Skip to content

Commit b5d9ca1

Browse files
committed
Drop teststs and support for python 3.7
1 parent 7081bb6 commit b5d9ca1

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: False
1616
matrix:
17-
python: [3.7]
17+
python: [3.9]
1818
os: [ubuntu-18.04]
1919

2020
steps:

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ jobs:
3737
fail-fast: False
3838
matrix:
3939
os: [ubuntu-20.04]
40-
python-version: [3.7, 3.8, 3.9, '3.10']
40+
python-version: [3.8, 3.9, '3.10']
4141
tox_env: [orange-released]
4242
name: [Released]
4343
include:
4444
- os: ubuntu-20.04
45-
python-version: 3.8
45+
python-version: '3.10'
4646
tox_env: orange-latest
4747
name: Latest
4848
- os: ubuntu-18.04
49-
python-version: 3.7
49+
python-version: 3.8
5050
tox_env: orange-oldest
5151
name: Oldest dependencies
5252
- os: ubuntu-20.04
@@ -113,20 +113,20 @@ jobs:
113113
fail-fast: false
114114
matrix:
115115
os: [macos-11, windows-2019]
116-
python-version: [3.7, 3.8, 3.9, '3.10']
116+
python-version: [3.8, 3.9, '3.10']
117117
tox_env: [orange-released]
118118
name: [Released]
119119
include:
120120
- os: windows-latest
121-
python-version: 3.8
121+
python-version: '3.10'
122122
tox_env: orange-latest
123123
name: Latest
124124
- os: macos-11
125-
python-version: 3.8
125+
python-version: '3.10'
126126
tox_env: orange-latest
127127
name: Latest
128128
- os: windows-latest
129-
python-version: 3.9
129+
python-version: '3.10'
130130
tox_env: pyqt6
131131
name: PyQt6
132132
- os: macos-11

requirements-core.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scipy>=1.3.1
66
scikit-learn>=1.0.1
77
bottleneck>=1.3.4
88
# Reading Excel files
9-
xlrd>=0.9.2
9+
xlrd>=1.2.0
1010
# Writing Excel Files
1111
xlsxwriter
1212
# Encoding detection

requirements-gui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ AnyQt>=0.1.0
55

66
# ignore pyqtgraph 0.12.4 due to https://github.com/pyqtgraph/pyqtgraph/issues/2237
77
pyqtgraph>=0.12.2,!=0.12.4
8-
matplotlib>=2.2.5
8+
matplotlib>=3.2.0
99
qtconsole>=4.7.2
1010
pygments>=2.8.0

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ deps =
4444
oldest: orange-widget-base==4.18.0
4545
oldest: AnyQt==0.1.0
4646
oldest: pyqtgraph==0.11.1
47-
oldest: matplotlib==2.2.5
47+
oldest: matplotlib==3.2.0
4848
oldest: qtconsole==4.7.2
4949
oldest: pygments==2.8.0
5050
oldest: pip==18.0
5151
oldest: numpy==1.17.3
5252
oldest: scipy==1.3.1
5353
oldest: scikit-learn==1.0.1
5454
oldest: bottleneck==1.3.4
55-
oldest: xlrd==0.9.2
55+
oldest: xlrd==1.2.0
5656
# oldest: xlsxwriter
5757
oldest: chardet==3.0.2
5858
oldest: joblib==0.11

0 commit comments

Comments
 (0)