Skip to content

Commit

Permalink
chore: update + support Python 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfermigier committed Nov 7, 2023
1 parent d849b9a commit 75edc1b
Show file tree
Hide file tree
Showing 15 changed files with 1,246 additions and 1,192 deletions.
2 changes: 1 addition & 1 deletion doc/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "GNU FDL"


[tool.poetry.dependencies]
python = ">=3.10,<3.12"
python = "^3.10"
mkdocs-newsletter = "^1.0.1"
mkdocs-material = "9.2.0b0"

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import nox

PYTHON_VERSIONS = ["3.10", "3.11"] # , "3.12"]
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]

nox.options.reuse_existing_virtualenvs = True
# nox.options.default_venv_backend = "venv"
Expand Down
2 changes: 1 addition & 1 deletion nua-agent/noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox
from nox import session

PYTHON_VERSIONS = ["3.10", "3.11"]
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]

nox.options.reuse_existing_virtualenvs = True

Expand Down
378 changes: 192 additions & 186 deletions nua-agent/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nua-build/noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox
from nox import session

PYTHON_VERSIONS = ["3.10", "3.11"]
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]

nox.options.reuse_existing_virtualenvs = True
nox.options.sessions = [
Expand Down
378 changes: 192 additions & 186 deletions nua-build/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nua-cli/noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox
from nox import session

PYTHON_VERSIONS = ["3.10", "3.11"]
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]

nox.options.reuse_existing_virtualenvs = True

Expand Down
376 changes: 191 additions & 185 deletions nua-cli/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nua-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ packages = [
nua = "nua_cli.main:main"

[tool.poetry.dependencies]
python = ">=3.10,<3.12"
python = "^3.10"

tomli = "^2.0.1"

Expand Down
2 changes: 1 addition & 1 deletion nua-lib/noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox
from nox import session

PYTHON_VERSIONS = ["3.10", "3.11"]
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]

nox.options.reuse_existing_virtualenvs = True

Expand Down
376 changes: 191 additions & 185 deletions nua-lib/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nua-orchestrator/noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox
from nox import session

PYTHON_VERSIONS = ["3.10", "3.11"]
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]

nox.options.reuse_existing_virtualenvs = True

Expand Down
391 changes: 203 additions & 188 deletions nua-orchestrator/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nua-server/noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox
from nox import session

PYTHON_VERSIONS = ["3.10", "3.11"]
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]

nox.options.reuse_existing_virtualenvs = True

Expand Down
521 changes: 268 additions & 253 deletions poetry.lock

Large diffs are not rendered by default.

0 comments on commit 75edc1b

Please sign in to comment.