We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b90da8 commit 759fe03Copy full SHA for 759fe03
.github/workflows/ci.yml
@@ -103,14 +103,14 @@ jobs:
103
make install
104
pip install -U wheel twine
105
106
+ - name: set version
107
+ run: VERSION_PATH='arq/version.py' python <(curl -Ls https://git.io/JT3rm)
108
+
109
- name: build
110
run: python setup.py sdist bdist_wheel
111
112
- run: twine check dist/*
113
- - name: check tag
- run: PACKAGE=arq python <(curl -Ls https://git.io/JvQsH)
-
114
- name: upload to pypi
115
run: twine upload dist/*
116
env:
arq/version.py
@@ -1,3 +1,3 @@
1
-__all__ = ('VERSION',)
+__all__ = ['VERSION']
2
3
-VERSION = '0.21'
+VERSION = 'dev'
0 commit comments