Skip to content

Commit

Permalink
chore: Bump up versions for dependencies we have to manually update
Browse files Browse the repository at this point in the history
  • Loading branch information
another-rex committed Nov 27, 2024
1 parent 17e53d8 commit e73a437
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
python-version: '3.11'
- name: Install poetry
run: pip install poetry==1.8.3
run: pip install poetry==1.8.4
- name: Set up poetry
run: poetry install
- name: Set up Go
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Set up Python 3
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.7
python-version: 3.11
- name: Install pypa/build
run: >-
python -m
Expand Down
2 changes: 1 addition & 1 deletion docker/worker-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN curl -sS https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON
# See: https://python-poetry.org/docs/#installation
ENV POETRY_HOME "/opt/poetry"
RUN python3 -m venv $POETRY_HOME
RUN $POETRY_HOME/bin/pip install poetry==1.8.3
RUN $POETRY_HOME/bin/pip install poetry==1.8.4
# Link in PATH to make it possible to directly call poetry
RUN ln -s $POETRY_HOME/bin/poetry /usr/local/bin/poetry

Expand Down
2 changes: 1 addition & 1 deletion gcp/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ COPY osv /osv/osv
COPY gcp/api /osv/gcp/api

WORKDIR /osv/gcp/api
RUN pip3 install poetry==1.8.3 && poetry install
RUN pip3 install poetry==1.8.4 && poetry install

ENTRYPOINT ["poetry", "run", "python", "/osv/gcp/api/server.py"]
2 changes: 1 addition & 1 deletion gcp/website/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ WORKDIR /osv/gcp/website
COPY setup.py poetry.lock pyproject.toml README.md /osv/
COPY osv /osv/osv
COPY gcp/website/poetry.lock gcp/website/pyproject.toml ./
RUN pip3 install poetry==1.8.3 && poetry install
RUN pip3 install poetry==1.8.4 && poetry install

# Website Python code
COPY gcp/website/*.py ./
Expand Down

0 comments on commit e73a437

Please sign in to comment.