Skip to content

Commit

Permalink
Merge pull request #79 from JuBiotech/py-up
Browse files Browse the repository at this point in the history
Increment required/tested Python versions
  • Loading branch information
lhelleckes authored May 25, 2024
2 parents 39f4348 + 2e799cf commit 99d617b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -36,7 +36,6 @@ jobs:
pytest --cov=./calibr8 --cov-append --cov-report xml --cov-report term-missing calibr8
- name: Upload coverage
uses: codecov/codecov-action@v4
if: matrix.python-version == 3.8
with:
file: ./coverage.xml
- name: Test Wheel install and import
Expand Down
2 changes: 1 addition & 1 deletion calibr8/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from . import utils
from .utils import DistributionType, pm

__version__ = "7.1.2"
__version__ = "7.2.0"
_log = logging.getLogger("calibr8")


Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def get_version():
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
Expand All @@ -75,5 +75,5 @@ def get_version():
"calibr8": package_files(str(pathlib.Path(pathlib.Path(__file__).parent, "calibr8").absolute()))
},
include_package_data=True,
python_requires=">=3.6",
python_requires=">=3.10",
)

0 comments on commit 99d617b

Please sign in to comment.