Skip to content

Commit f8329d3

Browse files
authored
Merge pull request #58 from blooop/feature/python3.13
feat: add support for python 3.13
2 parents d750bdd + 5175f4a commit f8329d3

File tree

4 files changed

+153
-8
lines changed

4 files changed

+153
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
environment: [py310, py311, py312]
17+
environment: [py310, py311, py312, py313]
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This has basic setup for
2222
[![GitHub pull-requests merged](https://badgen.net/github/merged-prs/blooop/python_template)](https://github.com/blooop/python_template/pulls?q=is%3Amerged)
2323
[![GitHub release](https://img.shields.io/github/release/blooop/python_template.svg)](https://GitHub.com/blooop/python_template/releases/)
2424
[![License](https://img.shields.io/github/license/blooop/python_template)](https://opensource.org/license/mit/)
25-
[![Python](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue)](https://www.python.org/downloads/)
25+
[![Python](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)](https://www.python.org/downloads/)
2626
[![Pixi Badge](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json)](https://pixi.sh)
2727

2828

pixi.lock

Lines changed: 148 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ python = "3.10.*"
2525
python = "3.11.*"
2626
[tool.pixi.feature.py312.dependencies]
2727
python = "3.12.*"
28+
[tool.pixi.feature.py313.dependencies]
29+
python = "3.13.*"
2830

2931

3032
[tool.pixi.pypi-dependencies]
@@ -54,6 +56,7 @@ default = {features = ["test"], solve-group = "default" }
5456
py310 = ["py310","test"]
5557
py311 = ["py311","test"]
5658
py312 = ["py312","test"]
59+
py313 = ["py313","test"]
5760

5861

5962
[tool.pixi.tasks]

0 commit comments

Comments
 (0)