We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
twine
1 parent f4fa74d commit a55c9ffCopy full SHA for a55c9ff
.travis.yml
@@ -9,7 +9,7 @@ python:
9
- "3.6"
10
- "3.7"
11
- "3.8"
12
- - "3.9-dev"
+ - "3.9"
13
- "pypy"
14
- "pypy3.5-7.0" # Need 7.0+ due to a bug in earlier versions that broke our tests.
15
@@ -36,8 +36,22 @@ before_install:
36
install:
37
- pip install -e .
38
39
+# command to run tests
40
+script: tox
41
+
42
after_success:
43
- coveralls
44
-# command to run tests
-script: tox
45
+before_deploy:
46
+ - pip install -U twine wheel
47
+ - python setup.py sdist bdist_wheel
48
49
+deploy:
50
+ provider: script
51
+ script: twine upload dist/*
52
+ skip_cleanup: true
53
+ on:
54
+ python: 3.9
55
+ tags: true
56
+ repo: PyFilesystem/pyfilesystem2
57
0 commit comments