Add Jinja as a requirement with the right version cutoff (#31536)

* Add Jinja as a requirement with the right version cutoff

* Correct package name!
This commit is contained in:
Matt 2024-06-24 14:42:16 +01:00 committed by GitHub
parent 0e23e60a5a
commit 2d4820284d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -124,6 +124,7 @@ _deps = [
"jax>=0.4.1,<=0.4.13",
"jaxlib>=0.4.1,<=0.4.13",
"jieba",
"jinja2>=3.1.0",
"kenlm",
# Keras pin - this is to make sure Keras 3 doesn't destroy us. Remove or change when we have proper support.
"keras>2.9,<2.16",

View File

@ -31,6 +31,7 @@ deps = {
"jax": "jax>=0.4.1,<=0.4.13",
"jaxlib": "jaxlib>=0.4.1,<=0.4.13",
"jieba": "jieba",
"jinja2": "jinja2>=3.1.0",
"kenlm": "kenlm",
"keras": "keras>2.9,<2.16",
"keras-nlp": "keras-nlp>=0.3.1",