Skip to content

Commit

Permalink
Fixing import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
krohak committed Feb 10, 2022
1 parent 67a7d72 commit 6a0e0e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
python3 setup.py sdist bdist_wheel
# twine upload dist/*
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This call to setup() does all the work
setup(
name="LWWElementGraph",
version="1.0.3",
version="1.0.4",
description="Module for a lightweight LWWElementGraph",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/LWWElementGraph/LWWElementGraph.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from collections import defaultdict
from src.LWWElementGraph.LWWElementSet import LWWElementSet, hashObj
from .LWWElementSet import LWWElementSet, hashObj

class LWWElementGraph(object):

Expand Down

0 comments on commit 6a0e0e3

Please sign in to comment.