Rename version.py to calc_version.py to fix buildd error

- There is a version.py included with buildd that is conflicting
   with the deluge one. Rather than messing with sys.path it is
   simplest to rename version.py to calc_version.py
This commit is contained in:
Calum Lind 2016-11-26 17:47:09 +00:00
parent 04370b38ec
commit 943a9ded00
4 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
include AUTHORS ChangeLog DEPENDS LICENSE msgfmt.py RELEASE-VERSION version.py README.rst
include AUTHORS ChangeLog DEPENDS LICENSE msgfmt.py RELEASE-VERSION calc_version.py README.rst
graft docs/man

View file

@ -19,7 +19,7 @@ from datetime import datetime
from subprocess import call
from gen_web_gettext import create_gettext_js
from version import get_version
from calc_version import get_version
# Paths to exclude
EXCLUSIONS = [

View file

@ -24,7 +24,7 @@ from setuptools import find_packages, setup
from setuptools.command.test import test as _test
import msgfmt
from version import get_version
from calc_version import get_version
try:
from sphinx.setup_command import BuildDoc