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 @@ -5,7 +5,7 @@ inputs:
python-version:
description: "Python version to use"
required: false
default: "3.13"
default: "3.14"
cache-key-suffix:
description: "Additional suffix for cache key"
required: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
outputs:
python-version:
description: "Python version to use"
value: "3.13"
value: "3.14"
poetry-cache-path:
description: "Poetry cache paths"
value: |
Expand All @@ -19,7 +19,7 @@ jobs:
config:
runs-on: ubuntu-latest
outputs:
python-version: "3.13"
python-version: "3.14"
poetry-cache-path: |
~/.cache/pypoetry
~/.poetry
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13.3
3.14.2
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The main CI workflow is defined in `.github/workflows/main.yml`.
This project includes the following dependencies:

- **Core Dependencies**:
- `python`: ^3.13 (switch the `.python-version` file to your liking)
- `python`: ^3.14 (switch the `.python-version` file to your liking)
- `loguru`: ^0.7.3 (useful logging package)

- **Development Dependencies**:
Expand Down Expand Up @@ -104,7 +104,7 @@ pyenv install --list
Download & install a specific Python version:

```bash
pyenv install 3.13.3
pyenv install 3.14.2
```

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

```bash
pyenv global 3.13.3
pyenv global 3.14.2
```

Set the local Python version for your project:

```bash
pyenv local 3.13.3
pyenv local 3.14.2
```

Feel free to utilize Pyenv and modify the `.python-version` file to your preference.
Expand Down
Loading