From abb9f2332de033a0e40adc0f3492a73df9cfc1cc Mon Sep 17 00:00:00 2001 From: Anton Osika Date: Thu, 22 Jun 2023 11:28:12 +0200 Subject: [PATCH] Distribute preprompt files --- .github/workflows/ci.yaml | 1 + .github/workflows/pytest-action.yml | 26 -------------------------- MANIFEST.in | 1 + pyproject.toml | 2 +- 4 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 .github/workflows/pytest-action.yml create mode 100644 MANIFEST.in diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aeff382f10..5b018dfac6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,3 +1,4 @@ +name: Pytest Execution on: pull_request: branches: diff --git a/.github/workflows/pytest-action.yml b/.github/workflows/pytest-action.yml deleted file mode 100644 index 82036db95d..0000000000 --- a/.github/workflows/pytest-action.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Pytest Execution - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3.10.11 - uses: actions/setup-python@v4 - with: - python-version: 3.10.11 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Test with pytest - run: | - pytest diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000..d575b3d243 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include gpt_engineer/preprompts * diff --git a/pyproject.toml b/pyproject.toml index 241ea09586..81450a69b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"] [project] name = "gpt-engineer" -version = "0.0.5" +version = "0.0.6" description = "Specify what you want it to build, the AI asks for clarification, and then builds it." readme = "README.md" requires-python = ">=3"