diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf9dea7..f29af34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - python-version: ["3.11"] + python-version: ["3.10","3.11"] steps: - uses: actions/checkout@v2 @@ -39,10 +39,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v2 - - name: Set up Python 3.11 + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: "3.11" + python-version: "3.10" - name: Install python dependencies run: | pip install --upgrade pip @@ -56,10 +56,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v2 - - name: Set up Python 3.11 + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: "3.11" + python-version: "3.10" - name: Install python dependencies run: | pip install --upgrade pip diff --git a/.readthedocs.yml b/.readthedocs.yml index 65adae3..73f00e4 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -13,7 +13,7 @@ sphinx: build: os: "ubuntu-22.04" tools: - python: "3.11" + python: "3.10" python: install: diff --git a/group_decomposition/__init__.py b/group_decomposition/__init__.py index 2a5d458..4fdd334 100644 --- a/group_decomposition/__init__.py +++ b/group_decomposition/__init__.py @@ -4,4 +4,4 @@ A plugin for extracting data from .sum files and manipuating them """ -__version__ = "0.6.0" +__version__ = "0.6.1" diff --git a/pyproject.toml b/pyproject.toml index 4dbed03..ab383ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ license = {file = "LICENSE"} classifiers = [ "Programming Language :: Python", 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License",