Skip to content

Commit

Permalink
feat: Update dependencies version
Browse files Browse the repository at this point in the history
Update the version of some dependencies to fix security findings. The drawback is that minimum Python version for EDAM is >=3.8.

This commit closes #53
  • Loading branch information
argysamo committed Aug 5, 2022
1 parent 96853ba commit dcdd4cb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.8', '3.9', '3.10' ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PyYAML==6.0
SQLAlchemy==1.4.36
requests==2.27.1
numpy==1.21.6
pandas==1.3.5
Flask==2.1.2
SQLAlchemy==1.4.39
requests==2.28.1
numpy==1.23.1
pandas==1.4.3
Flask==2.2.1
Flask-SQLAlchemy==2.5.1
Jinja2==3.1.2
geopy==2.2.0
Expand All @@ -12,4 +12,4 @@ click==8.1.3
flask_googlemaps==0.2.4
detect_delimiter==0.1.1
jinja2schema==0.1.4
plotly==5.8.0
plotly==5.9.0
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def run_tests(self):
include_package_data=True,
install_requires=required,
cmdclass={'test': PyTest, 'install': CustomInstall},
python_requires='>=3.7',
python_requires='>=3.8',
packages=find_packages(exclude=["tests.*", "tests"]),
author_email='[email protected]',
package_data={
Expand All @@ -135,7 +135,6 @@ def run_tests(self):
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down

0 comments on commit dcdd4cb

Please sign in to comment.