Skip to content

Commit

Permalink
build: temporarily remove Python 3.12 support (#510)
Browse files Browse the repository at this point in the history
Closes #509

### Summary of Changes

`torch` does not support Python 3.12 yet, so we need to restrict our
supported Python version until it does.
  • Loading branch information
lars-reimann authored Dec 19, 2023
1 parent f4fbfc2 commit 291b6b1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 48 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
python-version:
- "3.11"
- "3.12"
# - "3.12"
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
with:
working-directory: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
python-version:
- "3.11"
- "3.12"
# - "3.12"
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
with:
working-directory: .
Expand Down
48 changes: 3 additions & 45 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.11,<3.13"
python = "^3.11,<3.12"
ipython = "^8.8.0"
levenshtein = ">=0.21.1,<0.24.0"
matplotlib = "^3.6.3"
Expand Down

0 comments on commit 291b6b1

Please sign in to comment.