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 018c3ed commit d4be352Copy full SHA for d4be352
Makefile
@@ -1,14 +1,14 @@
1
DIST := dist
2
3
-all: clean
+build: clean
4
python setup.py sdist
5
python setup.py bdist_wheel --universal
6
7
clean:
8
rm -rf $(DIST)
9
10
-check:
+check: build
11
twine check $(DIST)/*
12
13
-upload:
+upload: check
14
twine upload $(DIST)/*
setup.py
@@ -11,7 +11,7 @@
setup(
name='dateutils',
- version='0.6.10',
+ version='0.6.12',
15
16
description='Various utilities for working with date and datetime objects',
17
0 commit comments