From f42a59d4d991f9a9c8ba0dba1da27699ae694b3a Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 11 Dec 2023 14:18:15 +0100 Subject: [PATCH 1/2] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6899edf..2d5077c 100644 --- a/setup.py +++ b/setup.py @@ -36,8 +36,8 @@ 'Programming Language :: Python :: 3.11', ], packages=find_packages(), - install_requires=['regex', 'adeft>=0.11.0', 'boto3', 'flask', - 'flask-restx', 'pystow>=0.1.10', 'unidecode', + install_requires=['regex', 'adeft>=0.11.0', 'boto3', 'flask>=3.0,<4.0', + 'flask-restx>=1.3.0', 'pystow>=0.1.10', 'unidecode', 'importlib_metadata; python_version < "3.8"', 'werkzeug'], extras_require={'test': ['pytest', 'pytest-cov', 'pandas'], From 39e55748d5bc57e45b85872a811066eda2bf32fb Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 11 Dec 2023 14:19:36 +0100 Subject: [PATCH 2/2] Drop py37 --- .github/workflows/tests.yml | 2 +- setup.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e80304c..8dac11a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.11"] + python-version: ["3.8", "3.11"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 2d5077c..5cf43d9 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,6 @@ author_email='benjamin_gyori@hms.harvard.edu', classifiers=[ 'Development Status :: 4 - Beta', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10',