Skip to content

Commit 74d20eb

Browse files
author
Ashley Scillitoe
authored
Drop Python 3.7 (#825)
1 parent 05a1ebb commit 74d20eb

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
matrix:
3636
os: [ ubuntu-latest ]
37-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11']
37+
python-version: [ '3.8', '3.9', '3.10', '3.11']
3838
include: # Run macos and windows tests on only one python version
3939
- os: windows-latest
4040
python-version: '3.9' # PyTorch doesn't yet have 3.10 support on Windows (https://pytorch.org/get-started/locally/#windows-python)

.github/workflows/test_all_notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false # Continue to run other builds despite a failure
2121
matrix:
2222
os: [ ubuntu-latest ]
23-
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
23+
python-version: [ '3.8', '3.9', '3.10' ]
2424
include: # Run macos and windows tests on only one python version
2525
- os: windows-latest
2626
python-version: '3.9' # PyTorch doesn't yet have 3.10 support on Windows (https://pytorch.org/get-started/locally/#windows-python)

.github/workflows/test_changed_notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [ ubuntu-latest ]
30-
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
30+
python-version: [ '3.8', '3.9', '3.10' ]
3131
include: # Run macos and windows tests on only one python version
3232
- os: windows-latest
3333
python-version: '3.9' # PyTorch doesn't yet have 3.10 support on Windows (https://pytorch.org/get-started/locally/#windows-python)

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def readme():
4646
license="Apache 2.0",
4747
packages=find_packages(),
4848
include_package_data=True,
49-
python_requires=">=3.7",
49+
python_requires=">=3.8",
5050
# lower bounds based on Debian Stable versions where available
5151
install_requires=[
5252
"matplotlib>=3.0.0, <4.0.0",
@@ -74,7 +74,6 @@ def readme():
7474
"Intended Audience :: Science/Research",
7575
"Operating System :: OS Independent",
7676
"Programming Language :: Python :: 3",
77-
"Programming Language :: Python :: 3.7",
7877
"Programming Language :: Python :: 3.8",
7978
"Programming Language :: Python :: 3.9",
8079
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)