Skip to content

Commit

Permalink
forbid python 3.11
Browse files Browse the repository at this point in the history
for pytorch < 2, ref. pytorch/pytorch#86566
  • Loading branch information
nim65s committed Jul 20, 2023
1 parent 3648b5e commit 5018816
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ version = "0.1.0"
panda3d = {optional = true, version = "=1.10.13"}
pin = "^2.6.17"
pybullet = {optional = true, version = "^3.2.5"}
python = "^3.8"
python = ">=3.8,<3.11"


[tool.poetry.extras]
Expand Down

0 comments on commit 5018816

Please sign in to comment.