Skip to content

Commit

Permalink
feat: bump python 3.11
Browse files Browse the repository at this point in the history
its been [out for a year now](https://devguide.python.org/versions/)
and seems pretty stable
  • Loading branch information
tekumara committed Dec 27, 2023
1 parent 6232f21 commit ea6c1b7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/.python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10
3.11
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- make
- node (required for pyright)
- python >= 3.10
- python >= 3.11

## Getting started

Expand Down
1 change: 0 additions & 1 deletion {{cookiecutter.repo_name}}/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"name": "{{cookiecutter.repo_name}}",
"devDependencies": {
"pyright": "1.1.330"
}
Expand Down
8 changes: 4 additions & 4 deletions {{cookiecutter.repo_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "{{cookiecutter.project_name}}"
description = "{{cookiecutter.description}}"
version = "0.0.0"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = []

[project.optional-dependencies]
Expand All @@ -16,13 +16,13 @@ dev = [
"twine~=4.0",
]

[build-system]
requires = ["setuptools~=68.2", "wheel~=0.40"]

[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]

[build-system]
requires = ["setuptools~=68.2", "wheel~=0.40"]

[tool.black]
# use PyCharm default line length of 120
line-length = 120
Expand Down

0 comments on commit ea6c1b7

Please sign in to comment.