We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd632a commit 8e9cbfaCopy full SHA for 8e9cbfa
.travis.yml
@@ -1,7 +1,8 @@
1
language: python
2
+cache:
3
+ pip: true
4
jobs:
5
include:
- - stage: "Tests"
6
- name: "Linux Python 3.6"
7
python: '3.6'
8
- name: "Linux Python 3.7"
@@ -27,12 +28,11 @@ install:
27
28
- python -m pip install -r requirements-nogpu.txt
29
- python -m pip install --upgrade pytest
30
script: python -m pytest tests/unit_tests.py
-
31
-- stage: "Deploy"
32
- deploy:
33
- provider: pypi
34
- user: "__token__"
35
- password: $pypitoken
36
- edge: true
37
- on:
38
- branch: master
+deploy:
+ provider: pypi
+ user: "__token__"
+ password: $pypitoken
+ edge: true
+ on:
+ branch: master
+ tags: true
0 commit comments