Skip to content

Commit

Permalink
Add Python 3.11 to CI matrix.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 588491335
  • Loading branch information
RyanMullins authored and LIT team committed Apr 11, 2024
1 parent 664e1b4 commit 8ac3135
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
node-version: [18]
python-version: ["3.10"]
python-version: ["3.10", "3.11"]
defaults:
run:
shell: bash -l {0}
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,11 @@ keywords = [
[project.optional-dependencies]
# LINT.IfChange
examples = [
"gunicorn==20.1.0",
"tensorflow==2.10.0",
"tensorflow-datasets==4.8.0",
"tensorflow-text==2.10.0",
"gunicorn>=20.1.0",
"tensorflow>=2.10.0",
"tensorflow-datasets>=4.9.0",
"tensorflow-text>=2.10.0",
"tf_keras",
"torch>=2.0.0",
"transformers>=4.27.1",
]
Expand Down
10 changes: 5 additions & 5 deletions requirements_examples.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
# limitations under the License.
# ==============================================================================
# LINT.IfChange
gunicorn==20.1.0
sentencepiece==0.1.99
tensorflow==2.10.0
tensorflow-datasets==4.8.0
tensorflow-text==2.10.0
gunicorn>=20.1.0
tensorflow>=2.10.0
tensorflow-datasets>=4.9.0
tensorflow-text>=2.10.0
tf_keras
torch>=2.0.0
transformers>=4.27.1
# LINT.ThenChange(./pyproject.toml)

0 comments on commit 8ac3135

Please sign in to comment.