-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove orbax-checkpoint support for Python 3.9.
PiperOrigin-RevId: 683192479
- Loading branch information
1 parent
410ca56
commit d1b8aaa
Showing
5 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,11 +18,11 @@ jobs: | |
working-directory: checkpoint | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11"] | ||
python-version: ["3.10", "3.11"] | ||
jax-version: ["newest"] | ||
include: | ||
- python-version: "3.9" | ||
jax-version: "0.4.26" # keep in sync with minimum version in checkpoint/pyproject.toml | ||
- python-version: "3.10" | ||
jax-version: "0.4.34" # keep in sync with minimum version in checkpoint/pyproject.toml | ||
steps: | ||
- name: Cancel previous | ||
uses: styfle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "orbax-checkpoint" | |
description = "Orbax Checkpoint" | ||
readme = 'README.md' | ||
license = {file = 'LICENSE'} | ||
requires-python = '>=3.9' | ||
requires-python = '>=3.10' | ||
authors = [{name = 'Orbax Authors', email='[email protected]'}] | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
|
@@ -26,8 +26,7 @@ dependencies = [ | |
'etils[epath,epy]', | ||
'typing_extensions', | ||
'msgpack', | ||
'jax >= 0.4.26', | ||
'jaxlib', | ||
'jax >= 0.4.34', | ||
'numpy', | ||
'pyyaml', | ||
'tensorstore >= 0.1.60', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ version: 2 | |
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.9" | ||
python: "3.10" | ||
|
||
sphinx: | ||
builder: html | ||
|