Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings

Commit9429be6

Browse 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 waspart ofgitpython-developers/gitdb#114, asto part ofgitpython-developers/smmap#58.Since some tests are not yet passing on 3.13, this does not add3.13 to CI, nor to the documentation of supported versions in`setup.py`. Note that the list there is not enforced; GitPython canalready be installed on Python 3.13 and probably *mostly* works.(See#1955for details on other changes that should be made to fully supportrunning GitPython on Python 3.13.)
1 parentfb1b051 commit9429be6

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

‎.github/workflows/pythonpackage.yml

Lines 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)

[8]ページ先頭

©2009-2025 Movatter.jp