diff --git a/CHANGELOG.md b/CHANGELOG.md index a6709853..66a5f5dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +0.19.2 +====== + +* Remove static libraries from lib directory + + 0.19.1 ====== diff --git a/relenv/build/common.py b/relenv/build/common.py index 226a4529..07117ee5 100644 --- a/relenv/build/common.py +++ b/relenv/build/common.py @@ -1555,7 +1555,6 @@ def runpip(pkg, upgrade=False): "/include/*", "*.so", "/lib/*.so.*", - "*.a", "*.py", # Mac specific, factor this out "*.dylib", diff --git a/relenv/common.py b/relenv/common.py index 8f7e7464..3cd99fa2 100644 --- a/relenv/common.py +++ b/relenv/common.py @@ -18,7 +18,7 @@ import time # relenv package version -__version__ = "0.19.1" +__version__ = "0.19.2" MODULE_DIR = pathlib.Path(__file__).resolve().parent