Skip to content

Commit 3b7a919

Browse files
committed
Merge branch '474-start-using-setuptools-scm'
# Conflicts: # CHANGELOG # setup.py # tox/__init__.py
2 parents 9db6c78 + 4cdb5c0 commit 3b7a919

File tree

6 files changed

+17
-25
lines changed

6 files changed

+17
-25
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Not released yet
2+
----
3+
4+
- #474: Start using setuptools_scm for tag based versioning.
5+
16
2.7.0
27
-----
38

doc/Makefile

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ PAPEROPT_a4 = -D latex_paper_size=a4
1212
PAPEROPT_letter = -D latex_paper_size=letter
1313
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
1414

15-
SITETARGET=$(shell ./_getdoctarget.py)
16-
1715
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
1816

1917
help:

doc/_getdoctarget.py

-16
This file was deleted.

doc/conf.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@
1313

1414
import sys, os
1515

16+
from pkg_resources import get_distribution
17+
18+
_full_version = get_distribution('tox').version
19+
release = _full_version.split('+', 1)[0]
1620
# The short X.Y version.
17-
sys.path.insert(0, os.path.dirname(__file__))
18-
import _getdoctarget
21+
version = '.'.join(release.split('.')[:2])
1922

20-
version = _getdoctarget.get_minor_version_string()
21-
release = _getdoctarget.get_version_string()
23+
sys.path.insert(0, os.path.dirname(__file__))
2224

2325
# If extensions (or modules to document with autodoc) are in another directory,
2426
# add these directories to sys.path here. If the directory is relative to the

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,14 @@ def main():
8484
description='virtualenv-based automation of test activities',
8585
long_description=get_long_description(),
8686
url='https://tox.readthedocs.org/',
87-
version='2.7.0',
87+
use_scm_version=True,
8888
license='http://opensource.org/licenses/MIT',
8989
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
9090
author='holger krekel',
9191
author_email='[email protected]',
9292
packages=['tox'],
9393
entry_points={'console_scripts': 'tox=tox:cmdline\ntox-quickstart=tox._quickstart:main'},
94+
setup_requires=['setuptools_scm'],
9495
# we use a public tox version to test, see tox.ini's testenv
9596
# "deps" definition for the required dependencies
9697
tests_require=['tox'],

tox/__init__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
#
2-
__version__ = '2.7.0'
1+
from pkg_resources import get_distribution
32

43
from .hookspecs import hookspec, hookimpl # noqa
54

5+
_full_version = get_distribution('tox').version
6+
__version__ = _full_version.split('+', 1)[0]
7+
68

79
class exception:
810
class Error(Exception):

0 commit comments

Comments
 (0)