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-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["310", "311", "312"]
python-version: ["311", "312", "313"]
include:
- python-version: "312"
- python-version: "313"
cov-report: "--cov-report=xml --cov"
codecov: "codecov"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: "build ${{ matrix.os }} (${{ matrix.arch }}) wheels"
uses: pypa/cibuildwheel@v3.0.1
env:
CIBW_SKIP: "cp39-* cp313-* pp* *-musllinux*"
CIBW_SKIP: "cp39-* cp310-* pp* *-musllinux*"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD_FRONTEND: "build"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
# Defined by PEP 518
requires = [
"Cython<3.1.0",
"Cython>=3.1.0",
"numpy>=2",
"setuptools>=77.0.3",
"setuptools_scm[toml]>=8",
Expand All @@ -22,9 +22,9 @@ classifiers = [
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
Expand All @@ -46,7 +46,7 @@ keywords = [
license = "BSD-3-Clause"
license-files = ["LICENSE"]
name = "stratify"
requires-python = ">=3.10"
requires-python = ">=3.11"

[project.urls]
Code = "https://github.com/SciTools-incubator/python-stratify"
Expand Down
56 changes: 28 additions & 28 deletions requirements/locks/py311-linux-64.lock

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions requirements/locks/py312-linux-64.lock

Large diffs are not rendered by default.

184 changes: 184 additions & 0 deletions requirements/locks/py313-linux-64.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions requirements/py311.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ dependencies:

# Core dependencies.
- numpy>=2
- cython<3.1.0
- cython>=3.1.0

# Optional dependencies.
- dask
- dask>=2025.7.0

# Developer dependencies.
- pip
Expand Down
4 changes: 2 additions & 2 deletions requirements/py312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ dependencies:

# Core dependencies.
- numpy>=2
- cython<3.1.0
- cython>=3.1.0

# Optional dependencies.
- dask
- dask>=2025.7.0

# Developer dependencies.
- pip
Expand Down
6 changes: 3 additions & 3 deletions requirements/py310.yml → requirements/py313.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ channels:
- conda-forge

dependencies:
- python=3.10
- python=3.13

# Setup dependencies.
- setuptools>=77.0.3
- setuptools-scm>=8

# Core dependencies.
- numpy>=2
- cython<3.1.0
- cython>=3.1.0

# Optional dependencies.
- dask
- dask>=2025.7.0

# Developer dependencies.
- pip
Expand Down
4 changes: 2 additions & 2 deletions requirements/pypi-core.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Cython<3.1.0
dask[array]
Cython>=3.1.0
dask[array]>=2025.7.0
numpy>=2
Loading