Skip to content

Commit c0f90b2

Browse files
committed
TST: Default to Python3.8 on Windows, Mac, and Linux testing.
This is in preparation for dropping Python 3.7. It also allows the use of name-only arguments in function signatures.
1 parent 402802d commit c0f90b2

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/build_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ defaults:
1616

1717
env:
1818
DOWNLOAD_OPENBLAS: 1
19-
PYTHON_VERSION: 3.7
19+
PYTHON_VERSION: 3.8
2020

2121
jobs:
2222
lint:
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
strategy:
5858
matrix:
59-
python-version: [3.8, 3.9, 3.10.0-beta.4]
59+
python-version: [3.7, 3.9, 3.10.0-beta.4]
6060
steps:
6161
- uses: actions/checkout@v2
6262
with:

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cache:
2626

2727
jobs:
2828
include:
29-
- python: 3.7
29+
- python: 3.8
3030
os: linux
3131
arch: ppc64le
3232
env:
@@ -35,7 +35,7 @@ jobs:
3535
- NPY_USE_BLAS_ILP64=1
3636
- ATLAS=None
3737

38-
- python: 3.7
38+
- python: 3.8
3939
os: linux
4040
arch: s390x
4141
env:
@@ -44,7 +44,7 @@ jobs:
4444
- NPY_USE_BLAS_ILP64=1
4545
- ATLAS=None
4646

47-
- python: 3.7
47+
- python: 3.8
4848
os: linux
4949
arch: arm64
5050
virt: vm

azure-pipelines.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ stages:
7373
strategy:
7474
matrix:
7575
Python37-32bit-fast:
76-
PYTHON_VERSION: '3.7'
76+
PYTHON_VERSION: '3.8'
7777
PYTHON_ARCH: 'x86'
7878
TEST_MODE: fast
7979
BITS: 32
@@ -120,11 +120,11 @@ stages:
120120
strategy:
121121
maxParallel: 3
122122
matrix:
123-
Python37:
124-
PYTHON_VERSION: '3.7'
123+
Python38:
124+
PYTHON_VERSION: '3.8'
125125
USE_OPENBLAS: '1'
126-
Python37-ILP64:
127-
PYTHON_VERSION: '3.7'
126+
Python38-ILP64:
127+
PYTHON_VERSION: '3.8'
128128
NPY_USE_BLAS_ILP64: '1'
129129
USE_OPENBLAS: '1'
130130
steps:
@@ -232,7 +232,7 @@ stages:
232232
inputs:
233233
testResultsFiles: '**/test-*.xml'
234234
failTaskOnFailedTests: true
235-
testRunTitle: 'Publish test results for Python 3.7 64-bit full Mac OS'
235+
testRunTitle: 'Publish test results for Python 3.8 64-bit full Mac OS'
236236

237237

238238
- job: Windows

0 commit comments

Comments
 (0)