From 81d401cdaf129e6115d0c6710c1ae33a8b8015bf Mon Sep 17 00:00:00 2001 From: Oriol Abril-Pla Date: Sat, 23 Nov 2024 00:36:54 +0100 Subject: [PATCH] post release changes (#41) * post release changes * update versions * skip 3.13 tests for now --- .github/workflows/test.yml | 2 +- pyproject.toml | 6 +++--- src/arviz_stats/_version.py | 2 +- tox.ini | 5 ++--- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 873ffb3..7d4b0c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.11", "3.12"] fail-fast: false steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 7dc0a29..e87d5f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] name = "arviz-stats" readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.11" license = {file = "LICENSE"} authors = [ {name = "ArviZ team", email = "arvizdevs@gmail.com"} @@ -19,9 +19,9 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dynamic = ["version", "description"] dependencies = [ @@ -40,7 +40,7 @@ funding = "https://opencollective.com/arviz" [project.optional-dependencies] xarray = [ - "arviz-base==0.3.0", + "arviz-base @ git+https://github.com/arviz-devs/arviz-base", "xarray-einstats", "numba", ] diff --git a/src/arviz_stats/_version.py b/src/arviz_stats/_version.py index 96bbd73..35459e6 100644 --- a/src/arviz_stats/_version.py +++ b/src/arviz_stats/_version.py @@ -1,3 +1,3 @@ """ArviZ version.""" -__version__ = "0.3.0" +__version__ = "0.4.0.dev0" diff --git a/tox.ini b/tox.ini index 051de9d..87cab0e 100644 --- a/tox.ini +++ b/tox.ini @@ -2,23 +2,22 @@ envlist = check docs - {py310,py311,py312}{,-coverage} + {py311,py312,py313}{,-coverage} # See https://tox.readthedocs.io/en/latest/example/package.html#flit isolated_build = True isolated_build_env = build [gh-actions] python = - 3.10: py310 3.11: py311 3.12: py312, check 3.13: py313 [testenv] basepython = - py310: python3.10 py311: python3.11 py312: python3.12 + py313: python3.13 # See https://github.com/tox-dev/tox/issues/1548 {check,docs,cleandocs,viewdocs,build}: python3 setenv =