Skip to content

Commit 19ea4e4

Browse files
committed
Changes to rely on environment.yml file rather than fighting it
1 parent 9f9326a commit 19ea4e4

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

appveyor.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,19 @@ init:
4444
install:
4545
- conda config --set always_yes yes --set changeps1 no
4646
- conda update -q conda
47-
- sed -i 's/ - pip:/ - mypy>0.9\n - black=19.10b0\n - pip:/' environment.yml
47+
- sed -i 's/python>=3.6/python=$PYTHON_VERSION/g' environment.yml
4848
- conda env create -f environment.yml
4949
- activate cadquery
50-
- cmd: conda install -c conda-forge -c defaults -c cadquery python=%PYTHON_VERSION%
51-
- sh: conda install -c conda-forge -c defaults -c cadquery python=$PYTHON_VERSION
50+
#- cmd: conda install -c conda-forge -c defaults -c cadquery python=%PYTHON_VERSION%
51+
#- sh: conda install -c conda-forge -c defaults -c cadquery python=$PYTHON_VERSION
52+
#- pip install black=19.10b0
5253
- pip install git+https://github.com/CadQuery/[email protected]
53-
- pip install pytest
54-
- pip install pytest-cov
55-
- pip install path
56-
- pip install docutils
57-
- pip install codecov
54+
#- pip install mypy
55+
#- pip install pytest
56+
#- pip install pytest-cov
57+
#- pip install path
58+
#- pip install docutils
59+
#- pip install codecov
5860

5961
build: false
6062

environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ dependencies:
1212
- sphinx_rtd_theme
1313
- sphinx-autodoc-typehints
1414
- black=19.10b0
15+
- mypy
1516
- codecov
1617
- pytest
1718
- pytest-cov

0 commit comments

Comments
 (0)