diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index c301c64..577b48c 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -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 }} diff --git a/requirements.txt b/requirements.txt index 7cfecc8..7135172 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 @@ -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 \ No newline at end of file +plotly==5.9.0 \ No newline at end of file diff --git a/setup.py b/setup.py index e9affe9..17f7743 100644 --- a/setup.py +++ b/setup.py @@ -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='argysamo@gmail.com', package_data={ @@ -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',