Skip to content

Commit

Permalink
Merge branch 'ucrt_64bit' of github.com:3-manifolds/CyPari into ucrt_…
Browse files Browse the repository at this point in the history
…64bit
  • Loading branch information
culler committed Dec 1, 2024
2 parents 7223b8a + 6c37eca commit 85a6136
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ jobs:
os: [macos-13]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: 3.12
python-version: '3.12'
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
- name: Build wheels
run: |
python3.12 -m cibuildwheel --output-dir wheelhouse
python3 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp38* cp39* cp310-* cp311-* cp312-*
CIBW_BUILD: cp38* cp39* cp310* cp311* cp312*
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
CIBW_BEFORE_BUILD: |
CIBW_BEFORE_BUILD: |
pip install cython>=3.0.0
CIBW_TEST_COMMAND: python -m cypari.test

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
shell: msys2 {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install a Python to use for building
with:
python-version: '3.12'
Expand All @@ -39,20 +39,20 @@ jobs:
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
python3 -m pip install cibuildwheel
- name: Build gmp and pari
run: |
bash build_pari.sh pari64 gmp64
- name: Build many wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
python3 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: AMD64
CIBW_BUILD: cp38* cp39* cp310* cp311* cp312-*
CIBW_BUILD: cp38* cp39* cp310* cp311* cp312*
CIBW_BEFORE_BUILD: |
pip install cython
pip install Cython>=3.0.0
CIBW_TEST_COMMAND: python -m cypari.test

- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 85a6136

Please sign in to comment.