Skip to content

Commit

Permalink
make sure numpy is isntalled with latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
gruebel committed Oct 9, 2023
1 parent 0649659 commit a91ada7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ jobs:
# remove venv, if exists
pipenv --rm || true
pipenv --python ${{ matrix.python }}
pipenv run pip install -U setuptools pip
if [ ${{ matrix.python }} == '3.12' ]; then
pipenv run pip install -U setuptools pip
pipenv run pip install numpy>=1.26.0
fi
pipenv install --dev -v
pipenv run pip install redefine --index-url https://pip.redefine.dev
- name: Unit tests
Expand Down Expand Up @@ -123,6 +128,12 @@ jobs:
# remove venv, if exists
pipenv --rm || true
pipenv --python ${{ matrix.python }}
if [ ${{ matrix.python }} == '3.12' ]; then
pipenv run pip install -U setuptools pip
pipenv run pip install aiohttp==3.9.0b0
fi
pipenv run pip install -U setuptools pip wheel
pipenv run pip install pytest pytest-xdist
pipenv run python setup.py sdist bdist_wheel
Expand Down

0 comments on commit a91ada7

Please sign in to comment.