Compatibility with numpy 2 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release | |
uses: patrick-kidger/action_update_python_project@v6 | |
with: | |
python-version: "3.11" | |
test-script: | | |
python -m pip install pytest jax jaxlib sympy equinox | |
cp -r ${{ github.workspace }}/tests ./tests | |
pytest | |
pypi-token: ${{ secrets.pypi_token }} | |
github-user: patrick-kidger | |
github-token: ${{ github.token }} |