Skip to content

Commit d24f019

Browse files
authored
Merge pull request gitpython-developers#94 from EliahKagan/py37
Revert "Drop support for EOL Python 3.7"
2 parents 07948eb + bd21ed4 commit d24f019

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
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
include:
2020
- experimental: false
2121
- python-version: "3.12"

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
zip_safe=False,
2323
install_requires=['smmap>=3.0.1,<6'],
2424
long_description="""GitDB is a pure-Python git object database""",
25-
python_requires='>=3.8',
25+
python_requires='>=3.7',
2626
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
2727
classifiers=[
2828
"Development Status :: 5 - Production/Stable",
@@ -35,6 +35,7 @@
3535
"Operating System :: MacOS :: MacOS X",
3636
"Programming Language :: Python",
3737
"Programming Language :: Python :: 3",
38+
"Programming Language :: Python :: 3.7",
3839
"Programming Language :: Python :: 3.8",
3940
"Programming Language :: Python :: 3.9",
4041
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)