Skip to content

Commit

Permalink
Upgrade Python versions, dropping 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelosthege committed Apr 18, 2024
1 parent f2bb3d4 commit 28674a3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 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.9", "3.10"]
python-version: ["3.10", "3.11", "3.12"]
pymc-version: ["without", "'pymc>=5.0.0'"]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
pytest --cov=./murefi --cov-append --cov-report xml --cov-report term-missing murefi/tests.py
- name: Upload coverage
uses: codecov/codecov-action@v4
if: matrix.python-version == 3.8
if: matrix.python-version == 3.11
with:
file: ./coverage.xml
- name: Test Wheel install and import
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: |
pip install -e .
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ h5py
numpy
pandas
scipy
setuptools
typing_extensions
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ def get_version():
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"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 Down

0 comments on commit 28674a3

Please sign in to comment.