Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.14.3
3.14.4
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pyenv install --list
Download & install a specific Python version:

```bash
pyenv install 3.14.2
pyenv install 3.14.4
```

List the global Python version set by your system:
Expand All @@ -121,13 +121,13 @@ pyenv local
Set the global Python version for your system:

```bash
pyenv global 3.14.2
pyenv global 3.14.4
```

Set the local Python version for your project:

```bash
pyenv local 3.14.2
pyenv local 3.14.4
```

Feel free to utilize Pyenv and modify the `.python-version` file to your preference.
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "python-template"
version = "0.10.1"
version = "0.10.2"
description = "Used to templatize python projects."
authors = [{ name = "Loïc Motheu", email = "lmotheu@gmail.com" }]
readme = "README.md"
Expand All @@ -11,10 +11,10 @@ dependencies = [

[dependency-groups]
dev = [
"mypy>=1.20.1,<2.0.0",
"pre-commit>=4.5.1,<5.0.0",
"mypy>=1.20.2,<2.0.0",
"pre-commit>=4.6.0,<5.0.0",
"pytest>=9.0.3,<10.0.0",
"ruff>=0.15.10",
"ruff>=0.15.12",
]

[tool.ruff]
Expand Down
Loading
Loading