File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
- version = "3.1.2 "
1
+ version = "3.1.3 "
2
2
version_info = tuple ([int (d ) for d in version .split ("-" )[0 ].split ("." )])
Original file line number Diff line number Diff line change 1
1
Change log
2
2
==========
3
3
4
+ 3.1.3
5
+ -----
6
+
7
+ ### Bugfixes
8
+
9
+ * Regenerated invalid wheel package
10
+
4
11
3.1.2
5
12
-----
6
13
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ if [ -z $VERSION ]; then
18
18
exit 1
19
19
fi
20
20
21
+ echo " ##> Removing stale build files"
22
+ rm -rf ./build || exit 1
23
+
21
24
echo " ##> Tagging the release as $VERSION "
22
25
git tag $VERSION || exit 1
23
26
if [[ $2 == ' upload' ]]; then
@@ -30,4 +33,7 @@ pandoc -f markdown -t rst README.md -o README.rst || exit 1
30
33
if [[ $2 == ' upload' ]]; then
31
34
echo " ##> Uploading sdist to pypi"
32
35
python setup.py sdist bdist_wheel upload
36
+ else
37
+ echo " ##> sdist & wheel"
38
+ python setup.py sdist bdist_wheel
33
39
fi
You can’t perform that action at this time.
0 commit comments