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 .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
using: "composite"
steps:
- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
enable-cache: true

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
needs: config
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-env
with:
python-version: ${{ needs.config.outputs.python-version }}
Expand All @@ -23,7 +23,7 @@ jobs:
needs: [ config, setup ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-env
with:
python-version: ${{ needs.config.outputs.python-version }}
Expand All @@ -36,7 +36,7 @@ jobs:
needs: [ config, setup ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-env
with:
python-version: ${{ needs.config.outputs.python-version }}
Expand All @@ -49,7 +49,7 @@ jobs:
needs: [ config, setup ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-env
with:
python-version: ${{ needs.config.outputs.python-version }}
Expand All @@ -62,7 +62,7 @@ jobs:
needs: [ config, setup ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-env
with:
python-version: ${{ needs.config.outputs.python-version }}
Expand All @@ -74,7 +74,7 @@ jobs:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ./.github/actions/setup-env
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

- name: Create Release
if: env.CREATE_RELEASE == 'true'
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ env.VERSION }}
name: ${{ env.VERSION }}
Expand Down
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