Skip to content

Commit af86bc9

Browse files
committed
Fixed automatic installation of dependencies.
1 parent fcabae4 commit af86bc9

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import os
2121
sys.path.append(os.path.join(os.path.dirname(__name__), '..'))
2222

23-
from pypozyx import VERSION as PYPOZYX_VERSION
23+
from version import VERSION as PYPOZYX_VERSION
2424

2525

2626
# -- Project information -----------------------------------------------------

pypozyx/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,6 @@
7272
7373
"""
7474

75-
__version__ = '1.3.0'
76-
77-
VERSION = __version__
78-
version = __version__
79-
8075

8176
from pypozyx.definitions import *
8277
from pypozyx.pozyx_serial import *

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44
from codecs import open
55

6-
from pypozyx import VERSION as PYPOZYX_VERSION
6+
from version import VERSION as PYPOZYX_VERSION
77

88
here = path.abspath(path.dirname(__file__))
99
# Get the long description from the README file

version.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
__version__ = '1.3.0'
2+
3+
VERSION = __version__
4+
version = __version__

0 commit comments

Comments
 (0)