Skip to content

Commit 77b1a60

Browse files
Bump minimum version of dependencies
1 parent 3eef349 commit 77b1a60

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
strategy:
1111
matrix:
12-
python-version: [ 3.8 ]
12+
python-version: [ 3.11 ]
1313
os: [ ubuntu-latest ]
1414
runs-on: ${{ matrix.os }}
1515
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Release
1313
uses: patrick-kidger/action_update_python_project@v1
1414
with:
15-
python-version: "3.8"
15+
python-version: "3.11"
1616
test-script: |
1717
python -m pip install pytest psutil jax jaxlib equinox scipy optax
1818
cp -r ${{ github.workspace }}/test ./test

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
run-tests:
88
strategy:
99
matrix:
10-
python-version: [ 3.8, 3.9 ]
10+
python-version: [ 3.9, 3.11 ]
1111
os: [ ubuntu-latest ]
1212
fail-fast: false
1313
runs-on: ${{ matrix.os }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ _From a technical point of view, the internal structure of the library is pretty
2121
pip install diffrax
2222
```
2323

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

2626
## Documentation
2727

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ _From a technical point of view, the internal structure of the library is pretty
2020
pip install diffrax
2121
```
2222

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

2525
## Quick example
2626

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"Topic :: Scientific/Engineering :: Mathematics",
4545
]
4646

47-
python_requires = "~=3.8"
47+
python_requires = "~=3.9"
4848

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

0 commit comments

Comments
 (0)