From 608a7df2d45035d90370e2a82ca1ac99b0d84aa9 Mon Sep 17 00:00:00 2001 From: Alejandro Esquivel Date: Tue, 2 Aug 2022 14:21:01 -0700 Subject: [PATCH] Pre-Release Alembic Issue (#956) * Updated manifest, release.yml & tests.yml to factor in covalent_migrations folder * Updated changelog * Added missing args in tests/release.yml * Added __init__.py --- .github/workflows/release.yml | 1 + .github/workflows/tests.yml | 1 + CHANGELOG.md | 4 ++++ MANIFEST.in | 1 + covalent_migrations/__init__.py | 0 5 files changed, 7 insertions(+) create mode 100644 covalent_migrations/__init__.py 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