Skip to content

Commit ba2162f

Browse files
committed
Fix appveyor
And remove errant project name reference to nbdime
1 parent 7157370 commit ba2162f

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

{{cookiecutter.github_project_name}}/appveyor.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ skip_branch_with_pr: true
55
environment:
66
nodejs_version: "8"
77
matrix:
8-
- PYTHON: "C:\\Miniconda36-x64"
9-
PYTHON_VERSION: "3.6.x"
8+
- PYTHON: "C:\\Miniconda3-x64"
9+
PYTHON_VERSION: "3.7"
1010
PYTHON_MAJOR: 3
1111
PYTHON_ARCH: "64"
1212
- PYTHON: "C:\\Miniconda3"
13-
PYTHON_VERSION: "3.4.x"
13+
PYTHON_VERSION: "3.4"
1414
PYTHON_MAJOR: 3
1515
PYTHON_ARCH: "32"
1616

@@ -24,6 +24,13 @@ install:
2424
- ps: Install-Product node $env:nodejs_version
2525
# Ensure python scripts are from right version:
2626
- 'SET "PATH=%PYTHON%\Scripts;%PYTHON%;%PATH%"'
27+
# Setup conda:
28+
- 'conda list'
29+
- 'conda update conda -y'
30+
# If 32 bit, force conda to use it:
31+
- 'IF %PYTHON_ARCH% EQU 32 SET CONDA_FORCE_32BIT=1'
32+
- 'conda create -n test_env python=%PYTHON_VERSION% -y'
33+
- 'activate test_env'
2734
# Update install tools:
2835
- 'conda install setuptools pip -y'
2936
- 'python -m pip install --upgrade pip'

{{cookiecutter.github_project_name}}/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
# The short X.Y version.
6666

6767

68-
# get version from nbdime:
68+
# get version from python package:
6969
import os
7070
here = os.path.dirname(__file__)
7171
repo = os.path.join(here, '..', '..')

0 commit comments

Comments
 (0)