Skip to content

Commit

Permalink
feat: update Python
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaelJarniac committed Jul 24, 2024
1 parent 8ae9eb9 commit f20d762
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.12'

- name: Install Poetry
uses: snok/install-poetry@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@ version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.11"
python: "3.12"
jobs:
# https://docs.readthedocs.io/en/stable/build-customization.html#install-dependencies-with-poetry
post_create_environment:
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_distribution_name}}/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 9,7 @@

import nox

python_versions = ["3.8", "3.9", "3.10", "3.11"]
python_versions = ["3.9", "3.10", "3.11", "3.12"]
venv_params = ["--no-setuptools", "--no-wheel"]


Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_distribution_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 23,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"

loguru = "^0.7.0"

Expand Down

0 comments on commit f20d762

Please sign in to comment.