File tree Expand file tree Collapse file tree 5 files changed +6
-85
lines changed
Expand file tree Collapse file tree 5 files changed +6
-85
lines changed Original file line number Diff line number Diff line change 11default_language_version :
2- python : python3.12
2+ python : python3.13
33default_stages :
44 - pre-push
55repos :
Original file line number Diff line number Diff line change 1- 3.12
1+ 3.13
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ A template repository for creating Python CLI applications.
66
771 . Rename "my_app" to the desired app name across the repo. (May be helpful to do a project-wide find-and-replace).
882 . 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 .
10104 . Add initial app description to README and update initial required ENV variable documentation as needed.
11115 . Update license if needed (check app-specific dependencies for licensing terms).
12126 . Check Github repository settings:
Original file line number Diff line number Diff line change 55[project ]
66name = " my-app"
77version = " 2.0.0"
8- requires-python = " >=3.12 "
8+ requires-python = " >=3.13 "
99
1010dependencies = [
1111 " click>=8.2.1" ,
@@ -31,7 +31,7 @@ exclude = ["tests/"]
3131log_level = " INFO"
3232
3333[tool .ruff ]
34- target-version = " py312 "
34+ target-version = " py313 "
3535line-length = 90
3636
3737# enumerate all fixed violations
You can’t perform that action at this time.
0 commit comments