diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9abca90..c1c59a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.6", "3.10"] + python-version: ["3.6", "3.11-dev"] runs-on: [ubuntu-latest, macos-latest, windows-latest] include: diff --git a/pyproject.toml b/pyproject.toml index 4595e8c..cf61f28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "uhi" -version = "0.3.1" +version = "0.3.2" description = "Unified Histogram Interface: tools to help library authors work with histograms" authors = [ {name="Henry Schreiner", email="henryschreineriii@gmail.com"}, @@ -32,6 +32,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering", "Typing :: Typed", ] diff --git a/src/uhi/__init__.py b/src/uhi/__init__.py index 260c070..f9aa3e1 100644 --- a/src/uhi/__init__.py +++ b/src/uhi/__init__.py @@ -1 +1 @@ -__version__ = "0.3.1" +__version__ = "0.3.2"