Skip to content

Commit 156151c

Browse files
authored
Merge pull request #52 from EliahKagan/py37
Revert "Drop support for EOL Python 3.7"
2 parents e163592 + b98fdd1 commit 156151c

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

Diff for: .github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
18+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v4

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For performance critical 64 bit applications, a simplified version of memory map
2727

2828
## Prerequisites
2929

30-
* Python 3.8+
30+
* Python 3.7+
3131
* OSX, Windows or Linux
3232

3333
The package was tested on all of the previously mentioned configurations.

Diff for: doc/source/intro.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For performance critical 64 bit applications, a simplified version of memory map
2020
#############
2121
Prerequisites
2222
#############
23-
* Python 3.8+
23+
* Python 3.7+
2424
* OSX, Windows or Linux
2525

2626
The package was tested on all of the previously mentioned configurations.

Diff for: setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
license="BSD",
2727
packages=find_packages(),
2828
zip_safe=True,
29-
python_requires=">=3.8",
29+
python_requires=">=3.7",
3030
classifiers=[
3131
"Development Status :: 5 - Production/Stable",
3232
"Environment :: Console",
@@ -38,6 +38,7 @@
3838
"Operating System :: MacOS :: MacOS X",
3939
"Programming Language :: Python",
4040
"Programming Language :: Python :: 3",
41+
"Programming Language :: Python :: 3.7",
4142
"Programming Language :: Python :: 3.8",
4243
"Programming Language :: Python :: 3.9",
4344
"Programming Language :: Python :: 3.10",

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = flake8, py{38, 39, 310, 311, 312}
7+
envlist = flake8, py{37, 38, 39, 310, 311, 312}
88

99
[testenv]
1010
commands = {envpython} -m pytest --cov smmap --cov-report xml {posargs}

0 commit comments

Comments
 (0)