Skip to content

Avoid crashes on Windows CI #258

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/anaconda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
source $CONDA/bin/activate env
$CONDA/bin/conda install --yes --quiet --name env conda-build pip
pip install --require-hashes -r ci/requirements.txt
pip install --require-hashes -r ci/requirements.txt -c ci/constraints.txt

- name: Build and Test
run: |
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/pypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
- 'macos-13'
- 'windows-2022'
py:
- 'pypy-3.9'
- 'pypy-3.10'
arch:
- 'x86'
Expand All @@ -40,7 +39,7 @@ jobs:

- name: Build
run: |
python -m pip wheel -w wheelhouse .
python -m pip wheel -w wheelhouse . -c ci/constraints.txt

test:
strategy:
Expand All @@ -51,7 +50,6 @@ jobs:
- 'macos-13'
- 'windows-2022'
py:
- 'pypy-3.9'
- 'pypy-3.10'
arch:
- 'x86'
Expand Down Expand Up @@ -82,7 +80,7 @@ jobs:

- name: Install Dependencies
run: |
pip install --require-hashes -r ci/requirements.pypy.txt
pip install --require-hashes -r ci/requirements.pypy.txt -c ci/constraints.txt

- name: Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
export CIBW_ARCHS=ARM64
export CIBW_BUILD=cp$(echo ${{ matrix.py }} | tr -d .)-*
export CIBW_BUILD_VERBOSITY=1
cibuildwheel --output-dir dist --arch ARM64
PIP_CONSTRAINT=ci/constraints.txt cibuildwheel --output-dir dist --arch ARM64

- name: Upload Wheel
uses: actions/upload-artifact@v4
Expand Down