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 1c38a4b commit 7ad7afaCopy full SHA for 7ad7afa
Makefile
@@ -5,7 +5,8 @@ install:
5
test:
6
poetry run pytest tests.py --verbose
7
8
-release:
+clean:
9
rm -rf build dist
10
- python setup.py sdist bdist_wheel
11
- twine upload --repository=fractional-indexing dist/*
+release: clean
+ poetry run python setup.py sdist bdist_wheel
12
+ poetry run twine upload --repository=fractional-indexing dist/*
fractional_indexing.py
@@ -11,7 +11,7 @@
import decimal
13
14
-__version__ = '0.1.1'
+__version__ = '0.1.2'
15
__licence__ = 'CC0 1.0 Universal'
16
17
BASE_62_DIGITS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
0 commit comments