Skip to content

Commit

Permalink
Use proper __version__ import
Browse files Browse the repository at this point in the history
  • Loading branch information
deeplook committed Aug 12, 2020
1 parent 5d0fb22 commit da63c6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ test:
coverage html

draft_changelog:
proclamation draft $(shell python -c "from xyzspaces.__version__ import __version__; print(__version__)")
proclamation draft $(shell python -c "from xyzspaces import __version__; print(__version__)")

build_changelog:
proclamation build -o -r $(shell python -c "from xyzspaces.__version__ import __version__; print(__version__)")
proclamation build -o -r $(shell python -c "from xyzspaces import __version__; print(__version__)")

0 comments on commit da63c6d

Please sign in to comment.