Skip to content

Commit

Permalink
[#52341] all: Correct and unify all Python versions to 3.11
Browse files Browse the repository at this point in the history
The manager requires Python 3.11+ due to usage of datetime.UTC,
while the server requires hashlib.file_digest. The version was
mentioned in the documentation, but the pyproject.toml files
were never updated.
  • Loading branch information
lkedziora committed Dec 13, 2023
1 parent 7fcb4c1 commit 6714ce0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/communication/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.11"
marshmallow = "^3.20.1"
marshmallow-dataclass = "^8.5.14"

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

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.11"
jsonschema = "^4.17.3"
rdfm_mgmt_communication = {path = "../common/communication"}
pydantic = "^2.0.3"
Expand Down
2 changes: 1 addition & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.11"
jsonschema = "^4.17.3"
rdfm_mgmt_communication = {path = "../common/communication"}
pydantic = "^2.0.3"
Expand Down

0 comments on commit 6714ce0

Please sign in to comment.