|
76 | 76 | - name: Install standalone dependencies only |
77 | 77 | run: | |
78 | 78 | uv sync |
79 | | - # temporary: install jax nightly |
80 | | - uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
81 | 79 | - name: Test importing Flax |
82 | 80 | run: | |
83 | 81 | uv run --no-sync python -c "import flax" |
@@ -125,21 +123,13 @@ jobs: |
125 | 123 | if [[ "${{ matrix.test-type }}" == "doctest" ]]; then |
126 | 124 | # TODO(cgarciae): Remove this once dm-haiku 0.0.14 is released |
127 | 125 | uv pip install -U git+https://github.com/google-deepmind/dm-haiku.git |
128 | | - # temporary: install jax nightly |
129 | | - uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
130 | 126 | uv run --no-sync tests/run_all_tests.sh --only-doctest |
131 | 127 | elif [[ "${{ matrix.test-type }}" == "pytest" ]]; then |
132 | 128 | uv pip install -U tensorflow-datasets |
133 | | - # temporary: install jax nightly |
134 | | - uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
135 | 129 | uv run --no-sync tests/run_all_tests.sh --only-pytest |
136 | 130 | elif [[ "${{ matrix.test-type }}" == "pytype" ]]; then |
137 | | - # temporary: install jax nightly |
138 | | - uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
139 | 131 | uv run --no-sync tests/run_all_tests.sh --only-pytype |
140 | 132 | elif [[ "${{ matrix.test-type }}" == "mypy" ]]; then |
141 | | - # temporary: install jax nightly |
142 | | - uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
143 | 133 | uv run --no-sync tests/run_all_tests.sh --only-mypy |
144 | 134 | else |
145 | 135 | echo "Unknown test type: ${{ matrix.test-type }}" |
|
0 commit comments