Skip to content

Commit

Permalink
Bump minimum version of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-kidger committed May 22, 2023
1 parent 3eef349 commit 77b1a60
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
strategy:
matrix:
python-version: [ 3.8 ]
python-version: [ 3.11 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Release
uses: patrick-kidger/action_update_python_project@v1
with:
python-version: "3.8"
python-version: "3.11"
test-script: |
python -m pip install pytest psutil jax jaxlib equinox scipy optax
cp -r ${{ github.workspace }}/test ./test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
run-tests:
strategy:
matrix:
python-version: [ 3.8, 3.9 ]
python-version: [ 3.9, 3.11 ]
os: [ ubuntu-latest ]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ _From a technical point of view, the internal structure of the library is pretty
pip install diffrax
```

Requires Python 3.8+, JAX 0.4.3+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.0+.
Requires Python 3.9+, JAX 0.4.4+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.4+.

## Documentation

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ _From a technical point of view, the internal structure of the library is pretty
pip install diffrax
```

Requires Python 3.8+, JAX 0.4.3+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.0+.
Requires Python 3.9+, JAX 0.4.4+, and [Equinox](https://github.com/patrick-kidger/equinox) 0.10.4+.

## Quick example

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"Topic :: Scientific/Engineering :: Mathematics",
]

python_requires = "~=3.8"
python_requires = "~=3.9"

install_requires = ["jax>=0.4.3", "equinox>=0.10.4"]

Expand Down

0 comments on commit 77b1a60

Please sign in to comment.