Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 156151c

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

File tree

5 files changed

+6
-5
lines changed
Filter options

5 files changed

+6
-5
lines changed

‎.github/workflows/pythonpackage.yml

Copy file name to clipboardExpand all lines: .github/workflows/pythonpackage.yml
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: doc/source/intro.rst
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: setup.py
+2-1Lines changed: 2 additions & 1 deletion
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

Copy file name to clipboardExpand all lines: tox.ini
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.