Skip to content
Snippets Groups Projects
Commit b7fe7e0f authored by Bjarke Madsen's avatar Bjarke Madsen
Browse files

Merge branch 'feature/COMP-170_improve_dependencies' into 'develop'

Feature/comp 170 improve dependencies part 1

See merge request !17
parents 42fecd28 7b3587a5
No related branches found
No related tags found
1 merge request!17Feature/comp 170 improve dependencies part 1
......@@ -8,4 +8,4 @@ environment.setup_logging()
app = compendium_v2.create_app()
if __name__ == '__main__':
app.run(host='::', port='5000')
app.run(host='::', port=5000)
......@@ -2,4 +2,3 @@
python_version = 3.8
disallow_untyped_defs = False
ignore_missing_imports = False
exclude = ['env/']
\ No newline at end of file
......@@ -7,18 +7,17 @@ setup(
author_email='swd@geant.org',
description='Flask and React project for displaying '
'Compendium related reports and survey',
url='https://gitlab.geant.net/live-projects/compendium-v2',
url='https://gitlab.geant.org/geant-swd/compendium-v2',
packages=find_packages(),
install_requires=[
'jsonschema',
'flask',
'flask-cors',
'SQLAlchemy',
'alembic',
'psycopg2-binary',
'cryptography',
'openpyxl',
'click'
'alembic~=1.10',
'click~=8.1',
'jsonschema~=4.17',
'flask~=2.2',
'flask-cors~=3.0',
'openpyxl~=3.1',
'psycopg2-binary~=2.9',
'SQLAlchemy~=2.0',
],
include_package_data=True,
......
......
......@@ -18,7 +18,6 @@ commands =
coverage html
coverage report --fail-under 80
flake8
# Disable mypy in tox until build server supports python 3.9
# mypy compendium_v2/**/*.py test/*.py
mypy {toxinidir}/compendium_v2/ {toxinidir}/test/
sphinx-build -M html docs/source docs/build
......@@ -9,6 +9,7 @@
"react-hooks"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment