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/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]

steps:
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Boilerplate for data science projects in Python. Check out the docs by clicking

[Coverage badge]: https://codecov.io/gh/eshwen/ds-python-boilerplate/branch/main/graph/badge.svg?token=M7NHFR7QTU

[Python badge]: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue?logo=Python&logoColor=yellow&link=https%3A%2F%2Fwww.python.org%2F
[Python badge]: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue?logo=Python&logoColor=yellow&link=https%3A%2F%2Fwww.python.org%2F

[Poetry badge]: https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json

Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/poetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Then, navigate to the project's root directory, and create the `virtualenv` envi
poetry env use 3.10 # (1)
```

1. This project also supports 3.11 - 3.13 if you want to use those instead.
1. This project also supports 3.11 - 3.14 if you want to use those instead.

In future sessions (on the CLI), you can enter the environment by navigating to the project's root directory and running

Expand Down
Loading
Loading