Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ci/azure/conda_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
matrix:
Python35:
python.version: '35'
Python35-min:
python.version: '35'
suffix: '-min'
Python36:
python.version: '36'
coverage: true
Expand All @@ -21,7 +24,7 @@ jobs:
steps:
- bash: echo "##vso[task.prependpath]/usr/share/miniconda/bin"
displayName: Add conda to PATH
- script: conda env create --quiet --file ci/requirements-py$(python.version).yml
- script: conda env create --quiet --file ci/requirements-py$(python.version)$(suffix).yml
displayName: Create Anaconda environment
- script: |
source activate test_env
Expand Down
3 changes: 3 additions & 0 deletions docs/sphinx/source/whatsnew/v0.8.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ Testing
applied to functions that require args or kwargs. (:pull:`973`)
* Test added for :py:class:`pvlib.modelchain.ModelChain` to confirm ValueError when
``ac_model`` is an invalid string. (:pull:`886`)
* Add minimum requirements configuration to Azure Pipelines build.
(:pull:`1006`)

Documentation
~~~~~~~~~~~~~
Expand Down Expand Up @@ -63,3 +65,4 @@ Contributors
* Mark Mikofski (:ghuser:`mikofski`)
* Joshua S. Stein (:ghuser:`jsstein`)
* Marc A. Anoma (:ghuser:`anomam`)
* Will Holmgren (:ghuser:`wholmgren`)