Skip to content

Commit

Permalink
post release changes (#41)
Browse files Browse the repository at this point in the history
* post release changes

* update versions

* skip 3.13 tests for now
  • Loading branch information
OriolAbril authored Nov 22, 2024
1 parent a989aac commit 81d401c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"}
Expand All @@ -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 = [
Expand All @@ -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",
]
Expand Down
2 changes: 1 addition & 1 deletion src/arviz_stats/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""ArviZ version."""

__version__ = "0.3.0"
__version__ = "0.4.0.dev0"
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 81d401c

Please sign in to comment.