Skip to content

Commit

Permalink
Enable Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlefran committed Apr 10, 2024
1 parent 56cdcd6 commit d8db113
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sphinx:
build:
os: "ubuntu-22.04"
tools:
python: "3.11"
python: "3.10"

python:
install:
Expand Down
2 changes: 1 addition & 1 deletion group_decomposition/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
A plugin for extracting data from .sum files and manipuating them
"""

__version__ = "0.6.0"
__version__ = "0.6.1"
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d8db113

Please sign in to comment.