Skip to content

Commit

Permalink
Drop support for Python 3.7 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrjones committed Aug 12, 2022
1 parent 5ca06fa commit 653c3e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ["3.8", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
]

Expand All @@ -45,7 +45,7 @@
classifiers=CLASSIFIERS,
description=DESCRIPTION,
long_description=long_description,
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=install_requires,
url=URL,
packages=find_packages(),
Expand Down

0 comments on commit 653c3e4

Please sign in to comment.