Skip to content

Commit 11d1563

Browse files
author
Todd Leonhardt
committed
No longer test for Python 3.4 on macOS
numpy and pandas install slowly on Python 3.4. Instead of writing the if/then logic to only install those on Python 3.5 or newer, just test on Python 3.5 or newer on macOS in order to speed up the Azure Pipeline build.
1 parent fbc4c7e commit 11d1563

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,14 @@ jobs:
1414
# Run the pipeline with multiple Python versions
1515
strategy:
1616
matrix:
17-
Python34:
18-
python.version: '3.4'
1917
Python35:
2018
python.version: '3.5'
2119
Python36:
2220
python.version: '3.6'
2321
Python37:
2422
python.version: '3.7'
2523
# Increase the maxParallel value to simultaneously run the job for all versions in the matrix (max 10 for free open-source)
26-
maxParallel: 4
24+
maxParallel: 3
2725

2826
steps:
2927
# Set the UsePythonVersion task to reference the matrix variable for its Python version

0 commit comments

Comments
 (0)