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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- master

env:
uv-version: "0.9.0"
uv-version: "0.9.26"

jobs:
test:
Expand All @@ -16,14 +16,14 @@ jobs:
platform:
- ubuntu-24.04
- ubuntu-24.04-arm
- macos-13
- macos-15
- windows-2025
python:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'v*'

env:
uv-version: "0.9.0"
uv-version: "0.9.26"

jobs:
pypi-publish:
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.13.8
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
options.sessions = ["test", "test_cffi", "test_numpy", "coverage", "lint"]


@session(python=["3.10", "3.11", "3.12", "3.13"], uv_groups=["test"])
@session(python=["3.10", "3.11", "3.12", "3.13", "3.14"], uv_groups=["test"])
def test(s: Session):
coverage_file = f".coverage.{platform.machine()}.{platform.system()}.{s.python}"
s.run("coverage", "run", "--data-file", coverage_file, "-m", "pytest", "tests")


@session(python=["3.10", "3.11", "3.12", "3.13"], uv_groups=["test"], uv_extras=["numpy"])
@session(python=["3.10", "3.11", "3.12", "3.13", "3.14"], uv_groups=["test"], uv_extras=["numpy"])
def test_numpy(s: Session):
coverage_file = f".coverage.{platform.machine()}.{platform.system()}.{s.python}.numpy"
s.run("coverage", "run", "--data-file", coverage_file, "-m", "pytest", "tests/test_numpy.py")


@session(python=["3.10", "3.11", "3.12", "3.13"], uv_groups=["test"], uv_extras=["cffi"])
@session(python=["3.10", "3.11", "3.12", "3.13", "3.14"], uv_groups=["test"], uv_extras=["cffi"])
def test_cffi(s: Session):
coverage_file = f".coverage.{platform.machine()}.{platform.system()}.{s.python}.cffi"
s.run("coverage", "run", "--data-file", coverage_file, "-m", "pytest", "tests_cffi")
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["uv_build == 0.8.*"]
requires = ["uv_build == 0.9.*"]
build-backend = "uv_build"

[project]
Expand All @@ -24,14 +24,15 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"returns >= 0.20,<0.27",
"cffi ~= 1.16",
"llvmlite == 0.45.*",
"llvmlite == 0.46.*",
"parsita == 2.*",
"typer == 0.19.*",
"typer == 0.21.*",
]

[project.optional-dependencies]
Expand Down Expand Up @@ -59,12 +60,12 @@ nox = [
"nox-uv == 0.6.*",
]
test = [
"pytest == 7.*", # Upgrading to pytest 8 breaks hypofuzz
"pytest == 9.*", # Upgrading to pytest 8 breaks hypofuzz
"coverage == 7.*"
]
fuzz = [
"hypothesis == 6.*",
"hypofuzz == 24.*"
"hypofuzz == 25.*"
]
lint = [
"ruff == 0.14.*"
Expand Down
Loading