Skip to content

Commit b911605

Browse files
committed
python version updates and stale Pipfile language
1 parent 9ab8ac9 commit b911605

File tree

5 files changed

+6
-85
lines changed

5 files changed

+6
-85
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_language_version:
2-
python: python3.12
2+
python: python3.13
33
default_stages:
44
- pre-push
55
repos:

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A template repository for creating Python CLI applications.
66

77
1. Rename "my_app" to the desired app name across the repo. (May be helpful to do a project-wide find-and-replace).
88
2. Update Python version if needed.
9-
3. Install all dependencies with `make install` to create initial Pipfile.lock with latest dependency versions.
9+
3. Install all dependencies with `make install` to install dependencies and set up the development environment.
1010
4. Add initial app description to README and update initial required ENV variable documentation as needed.
1111
5. Update license if needed (check app-specific dependencies for licensing terms).
1212
6. Check Github repository settings:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[project]
66
name = "my-app"
77
version = "2.0.0"
8-
requires-python = ">=3.12"
8+
requires-python = ">=3.13"
99

1010
dependencies = [
1111
"click>=8.2.1",
@@ -31,7 +31,7 @@ exclude = ["tests/"]
3131
log_level = "INFO"
3232

3333
[tool.ruff]
34-
target-version = "py312"
34+
target-version = "py313"
3535
line-length = 90
3636

3737
# enumerate all fixed violations

0 commit comments

Comments
 (0)