Skip to content

Commit 28f7a32

Browse files
authored
Drop python 3.8 (#220)
* drop python 3.8 * update minimum dependency versions * whatsnew * fix pandas issue by bumping to 1.3.0
1 parent 861da05 commit 28f7a32

File tree

5 files changed

+20
-14
lines changed

5 files changed

+20
-14
lines changed

.github/workflows/lint-and-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
11+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
1212
requirements: ['']
1313
include:
1414
- requirements: "-r requirements-min.txt"
15-
python-version: 3.8
15+
python-version: 3.9
1616
os: ubuntu-latest
1717

1818
runs-on: ${{ matrix.os }}
@@ -48,10 +48,10 @@ jobs:
4848
runs-on: ubuntu-latest
4949

5050
steps:
51-
- name: Set up Python 3.8
51+
- name: Set up Python 3.9
5252
uses: actions/setup-python@v1
5353
with:
54-
python-version: 3.8
54+
python-version: 3.9
5555
- name: Finish Coveralls Upload
5656
run: |
5757
pip install --upgrade pip
@@ -64,7 +64,7 @@ jobs:
6464

6565
strategy:
6666
matrix:
67-
python-version: [3.8]
67+
python-version: [3.9]
6868

6969
runs-on: ubuntu-latest
7070

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: "ubuntu-22.04"
55
tools:
6-
python: "3.7"
6+
python: "3.9"
77

88
sphinx:
99
configuration: docs/conf.py

docs/whatsnew/v0.2.3.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ Bug Fixes
1515

1616
Requirements
1717
~~~~~~~~~~~~
18+
* Advance minimum python to 3.8, and the following dependencies (:pull:`220`):
19+
20+
- numpy: 1.20.0
21+
- pandas: 1.3.0
22+
- statsmodels: 0.13.0
23+
- scikit-image: 0.18.0
1824

1925

2026
Documentation

requirements-min.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
numpy~=1.17.0
2-
pandas~=1.0.0
1+
numpy~=1.20.0
2+
pandas~=1.3.0
33
pvlib~=0.9.4
44
scipy~=1.6.0
5-
statsmodels~=0.10.0
6-
scikit-image~=0.16.0
5+
statsmodels~=0.13.0
6+
scikit-image~=0.18.0

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
]
3434

3535
INSTALL_REQUIRES = [
36-
'numpy >= 1.17.0',
37-
'pandas >= 1.0.0, != 1.1.*',
36+
'numpy >= 1.20.0',
37+
'pandas >= 1.3.0',
3838
'pvlib >= 0.9.4',
3939
'scipy >= 1.6.0',
40-
'statsmodels >= 0.10.0',
41-
'scikit-image >= 0.16.0',
40+
'statsmodels >= 0.13.0',
41+
'scikit-image >= 0.18.0',
4242
'importlib-metadata; python_version < "3.8"',
4343
]
4444

0 commit comments

Comments
 (0)