Skip to content

Commit 824deb4

Browse files
authored
Drop Python 3.7 (#405)
1 parent 7d8f976 commit 824deb4

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/ci-linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
1414
- name: Checkout source

.github/workflows/ci-osx.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
1414
- name: Checkout source

.github/workflows/ci-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
1414
- name: Checkout source

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ a bug report:
4343
interpreter can be obtained by running a Python interactive session, e.g.::
4444

4545
$ python
46-
Python 3.7.6 (default, Jan 8 2020, 13:42:34)
47-
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
46+
Python 3.8.15 | packaged by conda-forge | (default, Nov 22 2022, 08:49:06)
47+
[Clang 14.0.6 ] on darwin
4848

4949
3. An explanation of why the current behaviour is wrong/not desired, and what you
5050
expect instead.

docs/release.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ Maintenance
4343
* Support Python 3.11.
4444
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>`, :issue:`369`.
4545

46+
* Drop Python 3.7.
47+
By :user:`John Kirkham <jakirkham>`, :issue:`405`.
48+
4649
* Test with zfpy 1.0.0.
4750
By :user:`John Kirkham <jakirkham>`, :issue:`385`.
4851

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies = [
1919
"numpy>=1.7",
2020
"typing-extensions>=3.7.4"
2121
]
22-
requires-python = ">=3.7"
22+
requires-python = ">=3.8"
2323
dynamic = [
2424
"version",
2525
]

0 commit comments

Comments
 (0)