We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739f074 commit a2683eaCopy full SHA for a2683ea
.github/workflows/ci.yml
@@ -43,14 +43,16 @@ jobs:
43
runs-on: ubuntu-latest
44
steps:
45
- uses: actions/checkout@v4
46
- -
47
- uses: actions/setup-python@v5
48
- with:
49
- python-version: '3.x'
50
- name: "Main Script"
51
run: |
52
curl -L -O https://tiker.net/ci-support-v0
53
. ./ci-support-v0
+
+ # NOTE: jax>=0.4.31 requires python 3.10 and uses pattern matching
+ # which conflicts with our mypy.python_version = '3.8' setting
+ CONDA_ENVIRONMENT=.test-conda-env-py3.yml
54
+ sed -i "s/jax/jax<0.4.31/" "$CONDA_ENVIRONMENT"
55
56
build_py_project_in_conda_env
57
python -m pip install mypy pytest
58
./run-mypy.sh
0 commit comments