diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4a0bc367..259d820f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -180,6 +180,7 @@ jobs: tar xzf covalent-${VERSION}.tar.gz diff -x .gitignore -r covalent-${VERSION}/covalent ../covalent diff -x .gitignore -r covalent-${VERSION}/covalent_dispatcher ../covalent_dispatcher + diff -x README.md -r covalent-${VERSION}/covalent_migrations ../covalent_migrations diff -x .gitignore -x README.md -x webapp covalent-${VERSION}/covalent_ui ../covalent_ui diff -r covalent-${VERSION}/covalent_ui/webapp/build ../covalent_ui/webapp/build rm -rf covalent-${VERSION}/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9edcac0e0..f082ac551 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -152,6 +152,7 @@ jobs: tar xzf covalent-${VERSION}.tar.gz diff -x .gitignore -r covalent-${VERSION}/covalent ../covalent diff -x .gitignore -r covalent-${VERSION}/covalent_dispatcher ../covalent_dispatcher + diff -x README.md -r covalent-${VERSION}/covalent_migrations ../covalent_migrations diff -x .gitignore -x README.md -x webapp covalent-${VERSION}/covalent_ui ../covalent_ui diff -r covalent-${VERSION}/covalent_ui/webapp/build ../covalent_ui/webapp/build rm -rf covalent-${VERSION}/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d0e3930b..0dad8c25f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [UNRELEASED] +### Fixed + +- `script_location` key not found issue when installing with pip (second attempt) + ### Docs - Remove migration guide reference from README diff --git a/MANIFEST.in b/MANIFEST.in index 79cb2372e..09383fadb 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,6 +2,7 @@ include VERSION include requirements.txt recursive-include covalent/executor/executor_plugins/ * recursive-include covalent_dispatcher/_service/ * +recursive-include covalent_migrations/ * recursive-exclude covalent_ui/webapp/ * recursive-include covalent_ui/webapp/build/ * recursive-exclude tests/ * diff --git a/covalent_migrations/__init__.py b/covalent_migrations/__init__.py new file mode 100644 index 000000000..e69de29bb