Skip to content

Commit

Permalink
fix building in clean env (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed May 28, 2020
1 parent b80a89c commit 8e70c92
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -7,9 +7,8 @@
raise RuntimeError('Flopy requires Python >= 3.5')

# local import of package variables in flopy/version.py
sys.path.append('flopy')
from version import __version__, __pakname__, __author__, __author_email__
print(__version__, __pakname__, __author__, __author_email__)
# imports __version__, __pakname__, __author__, __author_email__
exec(open(os.path.join("flopy", "version.py")).read())

try:
import pypandoc
Expand Down

0 comments on commit 8e70c92

Please sign in to comment.