Skip to content

Commit

Permalink
idaes-dev as of af3ab42
Browse files Browse the repository at this point in the history
1.4.4 release
Fixing pip packaging so that files needed for tests are included
  • Loading branch information
ksbeattie committed Feb 8, 2020
1 parent 4ccc909 commit 68bc4f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion idaes/ver.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def git_hash():
pass

#: Package's version as an object
package_version = Version(1, 4, 3, "final", 0, gh)
package_version = Version(1, 4, 4, "final", 0, gh)

#: Package's version as a simple string
__version__ = str(package_version)
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pathlib import Path
import os
import sys
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages


def warn(s):
Expand Down Expand Up @@ -37,7 +37,7 @@ def rglob(path, glob):
zip_safe=False,
name=NAME,
version=VERSION,
packages=find_packages(),
packages=find_namespace_packages(),
# Put abstract (non-versioned) deps here.
# Concrete dependencies go in requirements[-dev].txt
install_requires=[
Expand Down Expand Up @@ -112,6 +112,7 @@ def rglob(path, glob):
"*.jpg",
"*.csv",
"*.ipynb",
"*.txt",
]
},
include_package_data=True,
Expand Down

0 comments on commit 68bc4f1

Please sign in to comment.