Skip to content

Update Python to v3.13.5 #240

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- run: "pipx install poetry"
- uses: "actions/setup-python@v5"
with:
python-version: "3.12"
python-version: "3.13"
cache: "poetry"
- run: "SKIP_BUILD_FRONTEND=true poetry lock"
- run: "SKIP_BUILD_FRONTEND=true poetry install"
Expand All @@ -54,7 +54,7 @@ jobs:
- run: "pipx install poetry"
- uses: "actions/setup-python@v5"
with:
python-version: "3.12"
python-version: "3.13"
cache: "poetry"
- run: "SKIP_BUILD_FRONTEND=true poetry lock"
- run: "SKIP_BUILD_FRONTEND=true poetry install"
Expand All @@ -75,7 +75,7 @@ jobs:
- run: "pipx install poetry"
- uses: "actions/setup-python@v5"
with:
python-version: "3.12"
python-version: "3.13"
cache: "poetry"
- run: "SKIP_BUILD_FRONTEND=true poetry lock"
- run: "SKIP_BUILD_FRONTEND=true poetry install"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- run: "pipx install poetry"
- uses: "actions/setup-python@v5"
with:
python-version: "3.12"
python-version: "3.13"
cache: "poetry"
- run: "poetry version $CLEAN_VERSION"
# Commit the changes and move the tag!
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- run: "pipx install poetry"
- uses: "actions/setup-python@v5"
with:
python-version: "3.12"
python-version: "3.13"
cache: "poetry"
- run: "poetry install"
- run: "poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}"
Expand Down
23 changes: 2 additions & 21 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 @@ -11,7 +11,7 @@ include = [
]

[tool.poetry.dependencies]
python = ">=3.10,<3.13" # Due to vtk transitive dependency of build123d -> cadquery-ocp -> vtk
python = ">=3.13,<3.14" # Due to vtk transitive dependency of build123d -> cadquery-ocp -> vtk

# CAD
build123d = ">=0.9,<0.10"
Expand Down
Loading