Skip to content

Commit

Permalink
Fix issue with incorrect import in .whl package
Browse files Browse the repository at this point in the history
  • Loading branch information
NexSabre committed Jul 21, 2020
1 parent 5f0d236 commit e00c657
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.2.2
- Fix issue with incorrect import in .whl package

# 0.2.1
- README.md and setup.py update

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.2.2
2 changes: 1 addition & 1 deletion src/pip2spack/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import requests

from pip2spack.spack_package import SpackPackage
from spack import Spack, Package
from pip2spack.spack import Spack, Package


def main():
Expand Down
6 changes: 3 additions & 3 deletions src/pip2spack/spack.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from os.path import exists, join, relpath, abspath
from typing import AnyStr

import constants
from constants import BUILDIN_REPOSITORY_REL_PATH
from spack_package import SpackPackage
import pip2spack.constants as constants
from pip2spack.constants import BUILDIN_REPOSITORY_REL_PATH
from pip2spack.spack_package import SpackPackage


@dataclass
Expand Down

0 comments on commit e00c657

Please sign in to comment.