Skip to content

Commit

Permalink
Add support for python 3.10 (#2031)
Browse files Browse the repository at this point in the history
* Added supported for python 3.10
  • Loading branch information
agunapal authored Dec 10, 2022
1 parent ed69497 commit ddaddb9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/regression_tests_cpu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Run Regression Tests on CPU

on: workflow_dipatch
on: workflow_dispatch

jobs:
regression-cpu:
Expand Down
2 changes: 1 addition & 1 deletion binaries/conda/build_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def conda_build(

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

python_versions = ["3.8", "3.9"]
python_versions = ["3.8", "3.9", "3.10"]
packages = [
os.path.join(conda_build_dir, pkg)
for pkg in ["torchserve", "torch-model-archiver", "torch-workflow-archiver"]
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1. Install dependencies

Note: For Conda, Python 3.8 is required to run Torchserve.
Note: For Conda, Python >=3.8 is required to run Torchserve.

#### For Debian Based Systems/ MacOS

Expand Down
4 changes: 2 additions & 2 deletions requirements/developer.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ pytest-cov
grpcio
protobuf
grpcio-tools
transformers==4.11.0
transformers==4.25.1
pyspelling
pygit2==1.6.1
pygit2
pyspelling
pre-commit
twine
Expand Down

0 comments on commit ddaddb9

Please sign in to comment.