Fix filter_vmap with out_axes!=0,1 producing the wrong axis order. #351
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@v4 | |
with: | |
python-version: "3.11" | |
test-script: | | |
cp -r ${{ github.workspace }}/tests ./tests | |
cp ${{ github.workspace }}/pyproject.toml ./pyproject.toml | |
python -m pip install -r ./tests/requirements.txt | |
pytest | |
pypi-token: ${{ secrets.pypi_token }} | |
github-user: patrick-kidger | |
github-token: ${{ github.token }} |