Skip to content

Commit 659a351

Browse files
authored
chore: release of 0.9.0
Merge pull request #147 from Logic-py/develop
2 parents c3be49f + 5543bf5 commit 659a351

File tree

6 files changed

+302
-176
lines changed

6 files changed

+302
-176
lines changed

.github/actions/setup-env/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
python-version:
66
description: "Python version to use"
77
required: false
8-
default: "3.13"
8+
default: "3.14"
99
cache-key-suffix:
1010
description: "Additional suffix for cache key"
1111
required: false

.github/workflows/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
outputs:
66
python-version:
77
description: "Python version to use"
8-
value: "3.13"
8+
value: "3.14"
99
poetry-cache-path:
1010
description: "Poetry cache paths"
1111
value: |
@@ -19,7 +19,7 @@ jobs:
1919
config:
2020
runs-on: ubuntu-latest
2121
outputs:
22-
python-version: "3.13"
22+
python-version: "3.14"
2323
poetry-cache-path: |
2424
~/.cache/pypoetry
2525
~/.poetry

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13.3
1+
3.14.2

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The main CI workflow is defined in `.github/workflows/main.yml`.
7575
This project includes the following dependencies:
7676

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

8181
- **Development Dependencies**:
@@ -104,7 +104,7 @@ pyenv install --list
104104
Download & install a specific Python version:
105105

106106
```bash
107-
pyenv install 3.13.3
107+
pyenv install 3.14.2
108108
```
109109

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

124124
```bash
125-
pyenv global 3.13.3
125+
pyenv global 3.14.2
126126
```
127127

128128
Set the local Python version for your project:
129129

130130
```bash
131-
pyenv local 3.13.3
131+
pyenv local 3.14.2
132132
```
133133

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

0 commit comments

Comments
 (0)