Skip to content

Commit

Permalink
use cytohn HEAD for numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Nov 8, 2024
1 parent dc546ce commit 5fd7b68
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ jobs:
if : ${{ matrix.os == 'ubuntu' }}
run: |
python -m pip install --upgrade pip
python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
python -m pip install pythran --no-build-isolation
# python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
# python -m pip install pythran --no-build-isolation
- name: install external dependencies
if : ${{ matrix.os == 'macos' }}
run: |
python -m pip install --upgrade pip
python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
python -m pip install pythran --no-build-isolation
# python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
# python -m pip install pythran --no-build-isolation
- name: Enable long paths on Windows
if: startsWith(runner.os, 'Windows')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nanobind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'ubuntu-latest', 'ubuntu-latest', 'ubuntu-latest']
os: ['ubuntu-latest']
python: ['pypy-3.11-nightly', 'pypy-3.10-nightly']

name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
name: "${{ matrix.python }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}

steps:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/numpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ jobs:
run: |
cd repo
python -c "import os; print('PKG_CONFIG_PATH', os.environ['PKG_CONFIG_PATH'])"
python -m pip install . -v -Csetup-args="--vsenv"
# python -m pip install . -v -Csetup-args="--vsenv"
# Use a newer cython
python -m pip install -r requirements/build_requirements.txt
python -m pip install git+https://github.com/cython/cython.git
python -m pip install --no-build-isolation . -v -Csetup-args="--vsenv"
- name: Test
shell: bash
Expand Down

0 comments on commit 5fd7b68

Please sign in to comment.