Skip to content

Commit 6a5b8f8

Browse files
Include Python3.8 into Azure Pipelines (#904)
* add Python3.8 to azure config * fix version name * add requirements-py38.yml config * add to what's new * fix what's new pytest-remote issue and pull reference
1 parent 7be246e commit 6a5b8f8

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

azure-pipelines.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
python.version: '3.6'
1919
Python37:
2020
python.version: '3.7'
21+
Python38:
22+
python.version: '3.8'
2123

2224

2325
steps:
@@ -58,6 +60,8 @@ jobs:
5860
coverage: true
5961
Python37:
6062
python.version: '37'
63+
Python38:
64+
python.version: '38'
6165

6266
steps:
6367
- bash: echo "##vso[task.prependpath]/usr/share/miniconda/bin"
@@ -111,6 +115,8 @@ jobs:
111115
python.version: '36'
112116
Python37-windows:
113117
python.version: '37'
118+
Python38-windows:
119+
python.version: '38'
114120

115121
steps:
116122
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
@@ -148,6 +154,8 @@ jobs:
148154
python.version: '3.6'
149155
Python37:
150156
python.version: '3.7'
157+
Python38:
158+
python.version: '3.8'
151159

152160
steps:
153161
- task: UsePythonVersion@0

ci/requirements-py38.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: test_env
2+
channels:
3+
- defaults
4+
- conda-forge
5+
dependencies:
6+
- coveralls
7+
- cython
8+
- ephem
9+
- netcdf4
10+
- nose
11+
- numba
12+
- numpy
13+
- pandas
14+
- pip
15+
- pytables # tables when using pip+PyPI
16+
- pytest
17+
- pytest-cov
18+
- pytest-mock
19+
- pytest-timeout
20+
- pytest-rerunfailures
21+
- pytest-remotedata
22+
- python=3.8
23+
- pytz
24+
- requests
25+
- scipy
26+
- shapely # pvfactors dependency
27+
- siphon # conda-forge
28+
- pip:
29+
- nrel-pysam>=2.0
30+
- pvfactors==1.0.1

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ Bug fixes
2727
the page. (:pull:`890`) (:issue:`888`)
2828
* Implement `pytest-remotedata <https://github.com/astropy/pytest-remotedata>`_
2929
to increase test suite speed. Requires ``--remote-data`` pytest flag to
30-
execute data retrieval tests over a network.
30+
execute data retrieval tests over a network.(:issue:`882`)(:pull:`896`)
3131
* Fix missing
3232
`0.7.0 what's new <https://pvlib-python.readthedocs.io/en/stable/whatsnew.html#v0-7-0-december-18-2019>`_
3333
entries about changes to ``PVSystem.pvwatts_ac``. Delete unreleased
3434
0.6.4 what's new file. (:issue:`898`)
3535
* Compatibility with cftime 1.1. (:issue:`895`)
36+
* Add Python3.8 to Azure Pipelines CI (:issue:`903`)(:pull:`904`)
3637

3738

3839
Documentation

0 commit comments

Comments
 (0)