Skip to content

Commit

Permalink
update requirements.txt, pytest.yaml, setup.py versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cdeline committed Oct 14, 2024
1 parent 9a52a8d commit 5f2a2b3
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 24 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false # don't cancel other matrix jobs when one fails
matrix:
python-version: ["3.8","3.12"]
python-version: ["3.8","3.11"]
# Test two environments:
# 1) dependencies with pinned versions from requirements.txt
# 2) 'pip install --upgrade --upgrade-strategy=eager .' to install upgraded
Expand All @@ -18,6 +18,10 @@ jobs:
'-r requirements.txt .[all]',
'--upgrade --upgrade-strategy=eager .[all]'
]
include:
- python-version: "3.12"
env: '--upgrade --upgrade-strategy=eager .[all]'


steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -70,7 +74,7 @@ jobs:

- name: Coveralls
continue-on-error: true #prevent coveralls from blowing the test report
if: matrix.python-version == 3.12 # && ${{ matrix.env }} == '-r requirements.txt .[all]'
if: matrix.python-version == 3.11 # && ${{ matrix.env }} == '-r requirements.txt .[all]'
run: |
coveralls --service=github
env:
Expand Down
38 changes: 19 additions & 19 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
docutils<0.18
coverage==7.2.1
cycler==0.11.0
idna==3.4
importlib-metadata==6.0.0
docutils<0.20
coverage==7.6.1
cycler==0.12.1
idna==3.10
importlib-metadata==8.5.0
ipython==8.13.0
kiwisolver==1.4.4
matplotlib==3.5.1
more-itertools==9.1.0
kiwisolver==1.4.7
matplotlib==3.7.5
more-itertools==10.5.0
numba==0.58.1
numpy==1.24.2
pandas==1.4.4
pluggy==1.0.0
pvlib==0.9.4
numpy==1.24.4
pandas==2.0.3
pluggy==1.5.0
pvlib==0.11.0
pvmismatch==4.1
py==1.11.0
pyparsing==3.0.9
pyparsing==3.1.4
pysmarts==0.0.1
pytest==7.2.2
pytest-cov==4.0.0
python-dateutil==2.8.2
pytz==2021.3
pytest==8.3.3
pytest-cov==5.0.0
python-dateutil==2.9.0.post0
pytz==2024.2
six==1.16.0
sphinx == 7.1.2
pydata-sphinx-theme == 0.15.4
sphinx-autoapi==1.8.4
pydata-sphinx-theme == 0.14.4
sphinx-autoapi==3.3.2
sphinx-rtd-theme==3.0.1
requests
future
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@
'ipython',
'sphinx >= 1.8.0',
'sphinx-autoapi>=1.1.0',
'pydata-sphinx-theme==0.8.1',
'nbsphinx==0.8.8',
'pydata-sphinx-theme>=0.14.4',
'nbsphinx>=0.8.8',
# sphinx-gallery is used indirectly for nbsphinx thumbnail galleries; see:
# https://nbsphinx.readthedocs.io/en/0.6.0/subdir/gallery.html#Creating-Thumbnail-Galleries
'sphinx-gallery==0.8.1',
'sphinx-gallery>=0.8.1',
'tqdm',
],
'all': [
Expand Down

0 comments on commit 5f2a2b3

Please sign in to comment.