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 369a1c6 commit 4442660Copy full SHA for 4442660
src/SDK/Language/Python.php
@@ -170,6 +170,12 @@ public function getFiles()
170
'template' => '/python/docs/example.md.twig',
171
'minify' => false,
172
],
173
+ [
174
+ 'scope' => 'default',
175
+ 'destination' => '.travis.yml',
176
+ 'template' => '/python/.travis.yml.twig',
177
+ 'minify' => false,
178
+ ],
179
];
180
}
181
templates/python/.travis.yml.twig
@@ -0,0 +1,16 @@
1
+language: python
2
+
3
+python:
4
+ - "3.8"
5
6
+jobs:
7
+ include:
8
+ - stage: pypi release
9
+ python: "3.8"
10
+ script: echo "Deploying to pypi ..."
11
+ deploy:
12
+ provider: pypi
13
+ username: "__token__"
14
+ password: $PYPI_TOKEN
15
+ on:
16
+ tags: true
0 commit comments