Skip to content

Commit

Permalink
Update Python version requirements to 3.12
Browse files Browse the repository at this point in the history
Python version requirements have been updated across the project to use version 3.12 instead of 3.11. This change is reflected in README.md, .python-version, poetry.lock, and pyproject.toml files.
  • Loading branch information
meanmail committed Jan 15, 2024
1 parent 9095da3 commit cac70c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.6
3.12.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ with epicbox.working_directory() as workdir:
```

## Installation
`epicbox` can be installed by running `pip install epicbox`. It's tested on Python 3.11+ and
`epicbox` can be installed by running `pip install epicbox`. It's tested on Python 3.12+ and
Docker 1.12+.

You can also check the [epicbox-images](https://github.com/hyperskill/epicbox-images)
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "~3.11"
python = "~3.12"
docker = ">=6.1.3"
python-dateutil = "^2.4"
requests = "^2.31.0"
Expand Down Expand Up @@ -115,7 +115,7 @@ order-by-type = false
required-imports = ["from __future__ import annotations"]

[tool.mypy]
python_version = "3.11"
python_version = "3.12"
check_untyped_defs = true
disallow_any_generics = true
disallow_untyped_calls = true
Expand Down

0 comments on commit cac70c6

Please sign in to comment.