-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored CI and fixed types in
tests/test_core.py
- Loading branch information
1 parent
741f302
commit 89c8c53
Showing
3 changed files
with
12 additions
and
14 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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "jaximal" | |
version = "0.1.1" | ||
description = "A JAX-based PyTree manipulation library " | ||
authors = [ | ||
{ name = "Arvin Kushwaha", email = "[email protected]" } | ||
{ name = "Arvin Kushwaha", email = "[email protected]" }, | ||
] | ||
dependencies = [ | ||
"safetensors>=0.4.3", | ||
|
@@ -22,12 +22,13 @@ build-backend = "hatchling.build" | |
|
||
[tool.rye] | ||
managed = true | ||
dev-dependencies = [ | ||
"pytest>=8.2.1", | ||
"basedpyright>=1.12.4", | ||
] | ||
excluded-dependencies = [ | ||
] | ||
dev-dependencies = ["pytest>=8.2.1", "basedpyright>=1.12.4"] | ||
excluded-dependencies = [] | ||
|
||
[tool.rye.scripts] | ||
ci = { chain = ["rye run pytest", "ci:verifytypes", "ci:basedpyright"] } | ||
"ci:verifytypes" = "rye run basedpyright --verifytypes jaximal" | ||
"ci:basedpyright" = "rye run basedpyright -p . ." | ||
|
||
[tool.hatch.metadata] | ||
allow-direct-references = true | ||
|
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