Skip to content

Fix automatic installation of dependencies. #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import os
sys.path.append(os.path.join(os.path.dirname(__name__), '..'))

from pypozyx import VERSION as PYPOZYX_VERSION
from version import VERSION as PYPOZYX_VERSION


# -- Project information -----------------------------------------------------
Expand Down
5 changes: 0 additions & 5 deletions pypozyx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@

"""

__version__ = '1.3.0'

VERSION = __version__
version = __version__


from pypozyx.definitions import *
from pypozyx.pozyx_serial import *
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup
from codecs import open

from pypozyx import VERSION as PYPOZYX_VERSION
from version import VERSION as PYPOZYX_VERSION

here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
Expand Down
4 changes: 4 additions & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__version__ = '1.3.0'

VERSION = __version__
version = __version__