Skip to content

Commit

Permalink
Removed osxmetadat.version from setup.py
Browse files Browse the repository at this point in the history
Fixed bug: setup.py would fail if xattr and pyobjc not already installed.  For now, version is hardcoded in both setup.py and osxmetadata/version.py
  • Loading branch information
RhetTbull committed Aug 1, 2019
1 parent 7da2e47 commit 7113821
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion osxmetadata/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.96.86"
__version__ = "0.96.87"
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
# we'll import stuff from the source tree, let's ensure is on the sys path
sys.path.insert(0, os.path.dirname(os.path.realpath(__file__)))

from osxmetadata.version import __version__ as version
# TODO: This fails if xattr and pyobjc not already installed
# for now, need to hard code version in both setup.py and osxmetadata/version.py
# from osxmetadata.version import __version__ as version
version = "0.96.87"

# read the contents of README file
this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit 7113821

Please sign in to comment.