Skip to content

Commit dabb253

Browse files
authored
update dependencies (#309)
1 parent 0ebafd8 commit dabb253

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v6
1414
with:
15-
python-version: "3.12"
15+
python-version: "3.13"
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
job: ["minimal", "xarray", "full"]
16-
python-version: ["3.11", "3.12", "3.13"]
16+
python-version: ["3.12", "3.13", "3.14"]
1717
fail-fast: false
1818
steps:
1919
- uses: actions/checkout@v6

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@ build-backend = "flit_core.buildapi"
55
[project]
66
name = "arviz-stats"
77
readme = "README.md"
8-
requires-python = ">=3.11"
8+
requires-python = ">=3.12"
99
license = {file = "LICENSE"}
1010
authors = [
1111
{name = "ArviZ team", email = "arvizdevs@gmail.com"}
1212
]
1313
classifiers = [
14-
"Development Status :: 3 - Alpha",
14+
"Development Status :: 5 - Production/Stable",
1515
"Intended Audience :: Developers",
1616
"Intended Audience :: Science/Research",
1717
"Intended Audience :: Education",
1818
"License :: OSI Approved :: Apache Software License",
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
2423
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2525
]
2626
dynamic = ["version", "description"]
2727
dependencies = [
2828
"numpy>=2",
29-
"scipy>=1.10",
29+
"scipy>=1.13",
3030
]
3131

3232
[tool.flit.module]
@@ -43,7 +43,7 @@ funding = "https://opencollective.com/arviz"
4343
xarray = [
4444
"arviz-base @ git+https://github.com/arviz-devs/arviz-base",
4545
"xarray-einstats",
46-
"xarray",
46+
"xarray>=2024.11.0",
4747
]
4848
numba = [
4949
"numba",

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ labels =
1515

1616
[gh-actions]
1717
python =
18-
3.11: coverage
19-
3.12: coverage, nightlies
20-
3.13: coverage
18+
3.12: coverage
19+
3.13: coverage, nightlies
20+
3.14: coverage
2121

2222
[gh-actions:env]
2323
JOB =

0 commit comments

Comments
 (0)