Skip to content

Commit b98fdd1

Browse files
committed
Revert "Drop support for EOL Python 3.7"
Analogous to gitpython-developers/gitdb#94, this brings back Python 3.7 support (allowing it to be installed on 3.7, and testing on 3.7), even though 3.7 is end of life, because support for 3.7 is not being dropped by GitPython (or gitdb) yet, and there is value in keeping GitPython, gitdb, and smmap consistent. This reverts commit f1b4d14.
1 parent e163592 commit b98fdd1

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.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

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.

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.

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",

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)