Skip to content

Commit

Permalink
Fix python versions for wheels; satisfy 'test_python_versions'.
Browse files Browse the repository at this point in the history
  • Loading branch information
pp-mo committed Oct 31, 2024
1 parent 90211d4 commit 69397b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels"
uses: pypa/[email protected]
env:
CIBW_SKIP: "cp39-* cp313-* pp* *-musllinux*"
CIBW_SKIP: "cp39-* pp* *-musllinux*"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD_FRONTEND: build
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
Expand Down
2 changes: 1 addition & 1 deletion cf_units/tests/test_coding_standards.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def test_license_headers(self):
@pytest.mark.skipif(not IS_GIT_REPO, reason="Not a git repository.")
def test_python_versions():
"""Confirm alignment of ALL files listing supported Python versions."""
supported = ["3.10", "3.11", "3.12"]
supported = ["3.10", "3.11", "3.12", "3.13"]
supported_strip = [ver.replace(".", "") for ver in supported]
supported_latest = supported_strip[-1]

Expand Down

0 comments on commit 69397b9

Please sign in to comment.