Skip to content

Navigation Menu

Sign in
Appearance settings

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 9429be6

Browse filesBrowse files
committed
Special-case Python 3.7 for OSes we can install it on
This is analogous to the 3.7-related CI change in gitdb that was part of gitpython-developers/gitdb#114, as to part of gitpython-developers/smmap#58. Since some tests are not yet passing on 3.13, this does not add 3.13 to CI, nor to the documentation of supported versions in `setup.py`. Note that the list there is not enforced; GitPython can already be installed on Python 3.13 and probably *mostly* works. (See #1955 for details on other changes that should be made to fully support running GitPython on Python 3.13.)
1 parent fb1b051 commit 9429be6
Copy full SHA for 9429be6

File tree

1 file changed

+10
-6
lines changed
Filter options

1 file changed

+10
-6
lines changed

‎.github/workflows/pythonpackage.yml

Copy file name to clipboardExpand all lines: .github/workflows/pythonpackage.yml
+10-6Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ permissions:
1111
jobs:
1212
build:
1313
strategy:
14-
fail-fast: false
1514
matrix:
16-
os: ["ubuntu-22.04", "macos-latest", "windows-latest"]
17-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
18-
exclude:
19-
- os: "macos-latest"
20-
python-version: "3.7"
15+
os: [ubuntu-latest, macos-latest, windows-latest]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2117
include:
2218
- experimental: false
19+
- os: ubuntu-22.04
20+
python-version: "3.7"
21+
experimental: false
22+
- os: windows-latest
23+
python-version: "3.7"
24+
experimental: false
25+
26+
fail-fast: false
2327

2428
runs-on: ${{ matrix.os }}
2529

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.