Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
benfred committed Oct 31, 2024
1 parent a843a4f commit e7ef861
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,22 @@ jobs:
exclude:
- os: macos-13
python-version: 3.11.10
- os: macos-13
python-version: 3.12.0
- os: macos-13
python-version: 3.12.1
- os: macos-13
python-version: 3.12.2
- os: macos-13
python-version: 3.12.3
- os: macos-13
python-version: 3.12.4
- os: macos-13
python-version: 3.12.5
- os: macos-13
python-version: 3.12.6
- os: macos-13
python-version: 3.12.7

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion ci/update_python_test_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def parse_version(v):
return tuple(int(part) for part in re.split("\W", v)[:3])
return tuple(int(part) for part in re.split(r"\W", v)[:3])


def get_github_python_versions():
Expand Down

0 comments on commit e7ef861

Please sign in to comment.