Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Drop py3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx committed Jan 16, 2024
1 parent 5eac918 commit 655e6e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.9'
- name: Checkout repo
uses: actions/checkout@v3
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
strategy:
fail-fast: False
matrix:
python-version: [ 3.8, 3.9, "3.10" ]
python-version: [ "3.9", "3.10" ]
test: [ 'coveralls', 'pytest', 'pytest_no_database' ]
# Only run coverage / no_database on py3.8
exclude:
# - python-version: 3.9
# test: coveralls
# - python-version: "3.10"
# test: coveralls
- python-version: 3.9
# - python-version: "3.11"
# test: coveralls
- python-version: "3.10"
test: pytest_no_database
env:
HAVE_ACCESS_TO_SECTETS: ${{ secrets.RUNDB_API_URL }}
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def open_requirements(path):
extras_require={
'docs': doc_requires,
},
python_requires=">=3.8",
python_requires=">=3.9",
packages=setuptools.find_packages() + ['extra_requirements'],
package_dir={'extra_requirements': 'extra_requirements'},
package_data={'extra_requirements': ['requirements-docs.txt',
Expand All @@ -45,7 +45,6 @@ def open_requirements(path):
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 655e6e7

Please sign in to comment.