Skip to content

Commit 71fa969

Browse files
committed
Skip compatibility test and add windows build
1 parent 2d7e70a commit 71fa969

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/build.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
strategy:
101101
fail-fast: false
102102
matrix:
103-
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[12]')}}
103+
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11, 12]')}}
104104
arcticdb_version: ["oldest", "latest"]
105105
include:
106106
- python_deps_ids: [""]
@@ -122,7 +122,7 @@ jobs:
122122
strategy:
123123
fail-fast: false
124124
matrix:
125-
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11]')}}
125+
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11, 12]')}}
126126
arcticdb_version: ["oldest", "latest"]
127127
include:
128128
- python_deps_ids: [""]
@@ -155,7 +155,7 @@ jobs:
155155
strategy:
156156
fail-fast: false
157157
matrix:
158-
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[12]')}}
158+
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11, 12]')}}
159159
include:
160160
- python_deps_ids: [""]
161161
matrix_override: ${{fromJson(needs.common_config.outputs.linux_matrix)}}
@@ -203,7 +203,7 @@ jobs:
203203
strategy:
204204
fail-fast: false
205205
matrix:
206-
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11]')}}
206+
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11, 12]')}}
207207
name: 3.${{matrix.python3}} Windows
208208
uses: ./.github/workflows/build_steps.yml
209209
secrets: inherit
@@ -222,7 +222,7 @@ jobs:
222222
strategy:
223223
fail-fast: false
224224
matrix:
225-
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[12]')}}
225+
python3: ${{fromJson(vars.LINUX_PYTHON_VERSIONS || '[6, 7, 8, 9, 10, 11, 12]')}}
226226
arcticdb_version: ["oldest", "latest"]
227227
include:
228228
- python_deps_ids: [""]
@@ -244,7 +244,7 @@ jobs:
244244
strategy:
245245
fail-fast: false
246246
matrix:
247-
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11]')}}
247+
python3: ${{fromJson(vars.WINDOWS_PYTHON_VERSIONS || '[7, 8, 9, 10, 11, 12]')}}
248248
arcticdb_version: ["oldest", "latest"]
249249
include:
250250
- python_deps_ids: [""]

python/tests/util/mark.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@
6060
)
6161

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

0 commit comments

Comments
 (0)