Skip to content

Commit bbd843e

Browse files
committed
Add python 3.8
1 parent aa5cda7 commit bbd843e

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ env:
1515
- TWINE_USERNAME="mwcraig"
1616
matrix:
1717
- CONDA_PY=3.6
18-
- CONDA_PY=3.7.3 # 3.7.4 on conda is broken
18+
- CONDA_PY=3.7
19+
- CONDA_PY=3.8
1920

2021
install:
2122
# Install and set up miniconda.

appveyor.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ environment:
2424
# python version. Right now conda build does not configure the SDK, and
2525
# the appveyor setup only sets up the SDK once, so separate by python
2626
# versions.
27+
- TARGET_ARCH: "x64"
28+
CONDA_PY: "3.8"
29+
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
2730
- TARGET_ARCH: "x64"
2831
CONDA_PY: "3.7"
2932
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
@@ -32,6 +35,9 @@ environment:
3235
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
3336

3437
# 32-bit builds
38+
- TARGET_ARCH: "x86"
39+
CONDA_PY: "3.8"
40+
CONDA_INSTALL_LOCN: "C:\\Miniconda37"
3541
- TARGET_ARCH: "x86"
3642
CONDA_PY: "3.7"
3743
CONDA_INSTALL_LOCN: "C:\\Miniconda37"
@@ -64,14 +70,11 @@ install:
6470
- cmd: conda config --append channels conda-forge
6571

6672
- cmd: conda config --set always_yes true
67-
# - conda install conda=4.5
68-
# - cmd: conda update --quiet conda python
73+
6974

7075
- echo %CONDA_PY%
7176
- conda update --quiet conda
72-
# Need to do this to pick up newer versions of conda
73-
- if "%CONDA_PY%"=="3.5" conda update --quiet conda
74-
77+
- if "%CONDA_PY%"=="3.8" conda install python=3.8
7578
- cmd: conda install --quiet conda%CONDA_VERSION_PIN% jinja2 conda-build anaconda-client cython wheel %INSTALL_ON_WINDOWS% tqdm%TQDM_PIN%
7679

7780
#- conda create --quiet -n wheel-build python=%CONDA_PY% wheel cython

0 commit comments

Comments
 (0)