We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fae684 commit 266cfc3Copy full SHA for 266cfc3
.gitignore
@@ -18,6 +18,7 @@ python_for_android.egg-info
18
/build/
19
doc/build
20
__pycache__/
21
+venv/
22
23
#idea/pycharm
24
.idea/
.travis.yml
@@ -58,3 +58,15 @@ jobs:
58
- <<: *testapps
59
name: Rebuild updated recipes
60
script: travis_wait 30 make docker/run/make/rebuild_updated_recipes
61
+
62
+# Deploy to PyPI using token set in `PYPI_PASSWORD` environment variable
63
+# https://pypi.org/manage/account/token/
64
+# https://travis-ci.org/github/kivy/python-for-android/settings
65
+deploy:
66
+ provider: pypi
67
+ distributions: sdist bdist_wheel
68
+ user: "__token__"
69
+ on:
70
+ tags: true
71
+ repo: kivy/python-for-android
72
+ python: 3.7
0 commit comments