Skip to content

Commit 653c3e4

Browse files
author
Max Jones
authored
Drop support for Python 3.7 (#81)
1 parent 5ca06fa commit 653c3e4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [3.7, 3.8, 3.9]
17+
python-version: ["3.8", "3.9", "3.10"]
1818
steps:
1919
- uses: actions/checkout@v3
2020
- name: Setup Python
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
strategy:
4949
matrix:
50-
python-version: [3.8, 3.9]
50+
python-version: ["3.8", "3.10"]
5151
steps:
5252
- uses: actions/checkout@v3
5353
- name: Setup Python

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
'Intended Audience :: Science/Research',
1717
'Programming Language :: Python',
1818
'Programming Language :: Python :: 3',
19-
'Programming Language :: Python :: 3.7',
2019
'Programming Language :: Python :: 3.8',
2120
'Programming Language :: Python :: 3.9',
21+
'Programming Language :: Python :: 3.10',
2222
'Topic :: Scientific/Engineering',
2323
]
2424

@@ -45,7 +45,7 @@
4545
classifiers=CLASSIFIERS,
4646
description=DESCRIPTION,
4747
long_description=long_description,
48-
python_requires='>=3.7',
48+
python_requires='>=3.8',
4949
install_requires=install_requires,
5050
url=URL,
5151
packages=find_packages(),

0 commit comments

Comments
 (0)