Skip to content

Commit

Permalink
Add py312
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebusm committed Nov 25, 2024
1 parent 14ca39f commit f194809
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analysis_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: ./.github/workflows/cibw_docker_image.yml
permissions: {packages: write}
with:
cibuildwheel_ver: "2.12.1"
cibuildwheel_ver: "2.21.3"
force_update: false

benchmark_commits:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: ./.github/workflows/cibw_docker_image.yml
permissions: {packages: write}
with:
cibuildwheel_ver: "2.12.1"
cibuildwheel_ver: "2.21.3"
force_update: false

common_config:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11]')}}
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11, 12]')}}
arcticdb_version: ["oldest", "latest"]
include:
- python_deps_ids: [""]
Expand All @@ -122,7 +122,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11]')}}
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11, 12]')}}
arcticdb_version: ["oldest", "latest"]
include:
- python_deps_ids: [""]
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11]')}}
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11, 12]')}}
include:
- python_deps_ids: [""]
matrix_override: ${{fromJson(needs.common_config.outputs.linux_matrix)}}
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11]')}}
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11, 12]')}}
name: 3.${{matrix.python3}} Windows
uses: ./.github/workflows/build_steps.yml
secrets: inherit
Expand All @@ -222,7 +222,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11]')}}
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11, 12]')}}
arcticdb_version: ["oldest", "latest"]
include:
- python_deps_ids: [""]
Expand All @@ -244,7 +244,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11]')}}
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11, 12]')}}
arcticdb_version: ["oldest", "latest"]
include:
- python_deps_ids: [""]
Expand Down
3 changes: 2 additions & 1 deletion python/tests/util/mark.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
)

VENV_COMPAT_TESTS_MARK = pytest.mark.skipif(
MACOS_CONDA_BUILD,
MACOS_CONDA_BUILD or
sys.version.startswith("3.12"), # Waiting for https://github.com/man-group/ArcticDB/issues/2008
reason="Skipping compatibility tests because macOS conda builds don't have an available PyPi arcticdb version"
)

Expand Down
2 changes: 1 addition & 1 deletion python/tests/util/storage_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def verify_library(ac):


def is_strategy_branch_valid_format(input_string):
pattern = r"^(linux|windows)_cp3(6|7|8|9|10|11).*$"
pattern = r"^(linux|windows)_cp3(6|7|8|9|10|11|12).*$"
match = re.match(pattern, input_string)
return bool(match)

Expand Down

0 comments on commit f194809

Please sign in to comment.