File tree 2 files changed +5
-4
lines changed
Filter options
2 files changed +5
-4
lines changed
Original file line number Diff line number Diff line change @@ -15,16 +15,17 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
strategy :
17
17
matrix :
18
- python-version : ["3.7 ", "3.8 ", "3.9 ", "3.10 ", "3.11 "]
18
+ python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 ", "3.12 "]
19
19
20
20
steps :
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
with :
23
23
fetch-depth : 1000
24
24
- name : Set up Python ${{ matrix.python-version }}
25
25
uses : actions/setup-python@v4
26
26
with :
27
27
python-version : ${{ matrix.python-version }}
28
+ allow-prereleases : true
28
29
- name : Install dependencies
29
30
run : |
30
31
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 22
22
zip_safe = False ,
23
23
install_requires = ['smmap>=3.0.1,<6' ],
24
24
long_description = """GitDB is a pure-Python git object database""" ,
25
- python_requires = '>=3.7 ' ,
25
+ python_requires = '>=3.8 ' ,
26
26
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
27
27
classifiers = [
28
28
"Development Status :: 5 - Production/Stable" ,
35
35
"Operating System :: MacOS :: MacOS X" ,
36
36
"Programming Language :: Python" ,
37
37
"Programming Language :: Python :: 3" ,
38
- "Programming Language :: Python :: 3.7" ,
39
38
"Programming Language :: Python :: 3.8" ,
40
39
"Programming Language :: Python :: 3.9" ,
41
40
"Programming Language :: Python :: 3.10" ,
42
41
"Programming Language :: Python :: 3.11" ,
42
+ "Programming Language :: Python :: 3.12" ,
43
43
"Programming Language :: Python :: 3 :: Only" ,
44
44
]
45
45
)
You can’t perform that action at this time.
0 commit comments