We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ac698 commit 4e72164Copy full SHA for 4e72164
.github/workflows/cibuildwheels.yml
@@ -79,8 +79,16 @@ jobs:
79
# E AssertionError: Parameter initial_mapping_size: not found in the docstring of Storage
80
# I don't see obvious way to fix this, so we skip it for now
81
CIBW_BEFORE_TEST: |
82
- if [ "${{ matrix.python-version }}" == "3.13" ]; then
83
- exit 0
+ if [ "$RUNNER_OS" == "Windows" ]; then
+ if [ "%PYTHON_VERSION%" == "3.13" ]; then
84
+ echo "Skipping tests for Python 3.13 on Windows"
85
+ exit 0
86
+ fi
87
+ else
88
+ if [ "${{ matrix.p_ver }}" == "3.13" ]; then
89
+ echo "Skipping tests for Python 3.13 on Unix-like systems"
90
91
92
fi
93
94
- name: Upload wheels
0 commit comments