Skip to content

In jnp.reshape, use shape rather than deprecated newshape. The newshape parameter was deprecated in JAX v0.4.28, and will soon be removed. #290

In jnp.reshape, use shape rather than deprecated newshape. The newshape parameter was deprecated in JAX v0.4.28, and will soon be removed.

In jnp.reshape, use shape rather than deprecated newshape. The newshape parameter was deprecated in JAX v0.4.28, and will soon be removed. #290

Workflow file for this run

name: ci
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build-and-test:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Run CI tests
run: bash test.sh
shell: bash