Skip to content

Commit

Permalink
added cython to tox.ini deps
Browse files Browse the repository at this point in the history
  • Loading branch information
reece committed Jan 27, 2020
1 parent ec206e1 commit 7865089
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stages:
jobs:
include:
- stage: deploy
python: 3.6
python: 3.7
install: skip
script: skip
deploy:
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ help:
############################################################################
#= SETUP, INSTALLATION, PACKAGING

#=> venv: make a Python 2.7 virtual environment
venv/2.7: venv/%:
virtualenv -p $$(type -p python$*) $@; \
source $@/bin/activate; \
pip install --upgrade pip setuptools

#=> venv: make a Python 3 virtual environment
venv/3.5 venv/3.6 venv/3.7: venv/%:
python$* -mvenv $@; \
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ commands =
whitelist_externals =
make
deps =
cython
six
passenv =
HGVS_CACHE_MODE
Expand Down

0 comments on commit 7865089

Please sign in to comment.