Skip to content

Commit f6f9207

Browse files
authored
add minimum requirements configuration to azure conda linux (#1006)
* add suffix to azure conda linux * whatsnew
1 parent ea0f0b2 commit f6f9207

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/azure/conda_linux.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
matrix:
1111
Python35:
1212
python.version: '35'
13+
Python35-min:
14+
python.version: '35'
15+
suffix: '-min'
1316
Python36:
1417
python.version: '36'
1518
coverage: true
@@ -21,7 +24,7 @@ jobs:
2124
steps:
2225
- bash: echo "##vso[task.prependpath]/usr/share/miniconda/bin"
2326
displayName: Add conda to PATH
24-
- script: conda env create --quiet --file ci/requirements-py$(python.version).yml
27+
- script: conda env create --quiet --file ci/requirements-py$(python.version)$(suffix).yml
2528
displayName: Create Anaconda environment
2629
- script: |
2730
source activate test_env

docs/sphinx/source/whatsnew/v0.8.0.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ Testing
3535
applied to functions that require args or kwargs. (:pull:`973`)
3636
* Test added for :py:class:`pvlib.modelchain.ModelChain` to confirm ValueError when
3737
``ac_model`` is an invalid string. (:pull:`886`)
38+
* Add minimum requirements configuration to Azure Pipelines build.
39+
(:pull:`1006`)
3840

3941
Documentation
4042
~~~~~~~~~~~~~
@@ -63,3 +65,4 @@ Contributors
6365
* Mark Mikofski (:ghuser:`mikofski`)
6466
* Joshua S. Stein (:ghuser:`jsstein`)
6567
* Marc A. Anoma (:ghuser:`anomam`)
68+
* Will Holmgren (:ghuser:`wholmgren`)

0 commit comments

Comments
 (0)