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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
python-version: 3.14

- name: Run Tests
run: |
uv sync
uv tool install tox
tox -e py313
tox -e py314
check:
runs-on: ubuntu-latest
steps:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
python-version: 3.14

- name: Check Formatting
run: |
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
python-version: 3.14

- name: Check Formatting
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
python-version: 3.14

- name: Release
run: |
Expand Down
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["struct", "cstruct", "type"]
requires-python = ">=3.13,<4.0"
requires-python = ">=3.14,<4.0"
dependencies = []

[project.urls]
Expand Down Expand Up @@ -62,7 +62,7 @@ exclude_lines = ["if __name__ == .__main__.:", "def __str__", "def __repr__", "p
package = true

[tool.ruff]
target-version = "py313"
target-version = "py314"
line-length = 120
indent-width = 4
exclude = []
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires =
tox-uv
skipsdist = True
envlist =
py313
py314
fix
check
type
Expand Down Expand Up @@ -49,4 +49,4 @@ commands =

[gh-actions]
python =
3.13: py313
3.14: py314
Loading
Loading