Skip to content

Commit

Permalink
Sync with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeLalor committed Jan 9, 2025
2 parents a8582f8 + 8c674c0 commit 512edab
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fi
- name: Install poetry
if: steps.check_fresh.outputs.is_fresh == 'true'
run: pipx install poetry
run: pipx install poetry==1.8
- name: Example setup step
if: steps.check_fresh.outputs.is_fresh == 'true'
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
run: pipx install poetry==1.8
- name: test
uses: ./.github/start-server
- uses: actions/upload-artifact@v4
Expand All @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install poetry
run: |
pipx install poetry
pipx install poetry==1.8
make poetry.lock
- uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
token: ${{ secrets.GH_PAT }}
- name: Install poetry
run: |
pipx install poetry
pipx install poetry==1.8
make poetry.lock
- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
token: ${{ secrets.GH_PAT }}
- name: Install poetry
run: |
pipx install poetry
pipx install poetry==1.8
make poetry.lock
- name: Syncing fork with upstream
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG EIDOLON_VERSION=0.1.184
FROM python:3.11-slim AS builder
RUN pip install poetry
RUN pip install poetry==1.8
RUN poetry config virtualenvs.create false --local
COPY pyproject.toml pyproject.toml
RUN poetry remove --lock eidolon-ai-sdk
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ chromadb = "^0.5.15"
asyncio_mode = "auto"

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0,<2.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 512edab

Please sign in to comment.