summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Lorey <git@karllorey.com>2020-09-27 13:21:17 +0200
committerKarl Lorey <git@karllorey.com>2020-09-27 13:23:07 +0200
commit5fc54bfb868d2f1e6f40f16cdef8a33b68fa7412 (patch)
treef013f31751d537dffc994d52dd185b63f1117843
parent3e1ce85f831cfb25963080bf9d676487a972b998 (diff)
Set verion to 0.0.0 to use bumpversion
-rw-r--r--mlscraper/__init__.py2
-rw-r--r--setup.cfg2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/mlscraper/__init__.py b/mlscraper/__init__.py
index 904449e..8db731a 100644
--- a/mlscraper/__init__.py
+++ b/mlscraper/__init__.py
@@ -1,6 +1,6 @@
__author__ = """Karl Lorey"""
__email__ = "git@karllorey.com"
-__version__ = "0.1.0"
+__version__ = "0.0.0"
import logging
import random
diff --git a/setup.cfg b/setup.cfg
index bdc32bd..3773326 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 0.1.0
+current_version = 0.0.0
commit = True
tag = True
diff --git a/setup.py b/setup.py
index 29284e5..1b340de 100644
--- a/setup.py
+++ b/setup.py
@@ -48,6 +48,6 @@ setup(
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/lorey/mlscraper",
- version="0.1.0",
+ version="0.0.0",
zip_safe=False,
)