Skip to content

Commit fa27d46

Browse files
committed
remove versioneer from setup and manifest
1 parent 62b5e48 commit fa27d46

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ include MANIFEST.in
1414
include *.md
1515
include *.toml
1616

17-
include versioneer.py
1817
include bookstore/_version.py
1918
include .coveragerc
2019

setup.cfg

-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,6 @@ max-line-length = 120
2323
[bdist_wheel]
2424
universal=1
2525

26-
[versioneer]
27-
VCS = git
28-
style = pep440
29-
versionfile_source = bookstore/_version.py
30-
versionfile_build = bookstore/_version.py
31-
tag_prefix =
32-
parentdir_prefix = bookstore-
33-
3426
[coverage:run]
3527
branch = False
3628
omit =

setup.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
""""
44
setup.py
55
6-
bookstore may be installed on Python 3.6 or higher.
7-
86
Note: Do a version check for IPython.
97
IPython v6+ no longer supports Python 2.
108
If Python 2, install ipython 5.x.
@@ -26,10 +24,6 @@
2624
# Python 3 only projects can skip this import
2725
from io import open
2826

29-
import versioneer
30-
31-
# python_2 = sys.version_info[0] == 2
32-
3327

3428
def read(fname):
3529
with open(fname, 'r') as fhandle:

0 commit comments

Comments
 (0)