File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
To create a new ` jax-ai-stack ` release, take the following steps:
4
4
5
- 1 . Send a pull request updating the version in ` pyproject.toml ` and
6
- ` jax-ai-stack/__init__.py ` to the version based on the release date.
5
+ 1 . Send a pull request updating the version in ` jax-ai-stack/__init__.py `
6
+ to the version based on the release date.
7
7
Also update ` CHANGELOG.md ` with the pinned package versions.
8
8
(an example for the 2024.10.1 release is [ PR #50 ] ).
9
9
2 . Once this is merged, create the release tag and push it to github. An
Original file line number Diff line number Diff line change 1
1
"""jax-ai-stack metapackage."""
2
2
3
- __version__ = "2025.1.9" # keep in sync with pyproject.toml
3
+ __version__ = "2025.1.9"
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " jax-ai-stack"
3
- version = " 2025.1.9 " # keep in sync with jax_ai_stack/__init__.py
3
+ dynamic = [ " version " ]
4
4
description = " "
5
5
readme = " README.md"
6
6
license = {file = " LICENSE" }
@@ -65,6 +65,9 @@ requires = [
65
65
packages = [" jax_ai_stack" ]
66
66
include-package-data = false
67
67
68
+ [tool .setuptools .dynamic ]
69
+ version = {attr = " jax_ai_stack.__version__" }
70
+
68
71
[tool .ruff .lint .per-file-ignores ]
69
72
# F811: Redefinition of unused name.
70
73
"docs/source/digits_vae.ipynb" = [" F811" ]
You can’t perform that action at this time.
0 commit comments