Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit ddaddb9

Browse files
authored
Add support for python 3.10 (#2031)
* Added supported for python 3.10
1 parent ed69497 commit ddaddb9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/regression_tests_cpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Run Regression Tests on CPU
22

3-
on: workflow_dipatch
3+
on: workflow_dispatch
44

55
jobs:
66
regression-cpu:

binaries/conda/build_packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def conda_build(
121121

122122
os.environ["PYTHON"] = "python"
123123

124-
python_versions = ["3.8", "3.9"]
124+
python_versions = ["3.8", "3.9", "3.10"]
125125
packages = [
126126
os.path.join(conda_build_dir, pkg)
127127
for pkg in ["torchserve", "torch-model-archiver", "torch-workflow-archiver"]

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
1. Install dependencies
66

7-
Note: For Conda, Python 3.8 is required to run Torchserve.
7+
Note: For Conda, Python >=3.8 is required to run Torchserve.
88

99
#### For Debian Based Systems/ MacOS
1010

requirements/developer.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ pytest-cov
77
grpcio
88
protobuf
99
grpcio-tools
10-
transformers==4.11.0
10+
transformers==4.25.1
1111
pyspelling
12-
pygit2==1.6.1
12+
pygit2
1313
pyspelling
1414
pre-commit
1515
twine

0 commit comments

Comments
 (0)