Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 2.1.1
poetry-version: 1.5.1

- name: Build Documentation
working-directory: jobbergate-docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 2.1.1
poetry-version: 1.5.1

- id: api-package
name: Bump version on the API
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_on_tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 2.1.1
poetry-version: 1.5.1

- id: poetry-package-version
name: Get project's version
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:

- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 2.1.1
poetry-version: 1.5.1

- id: poetry-package-version
name: Get version of project from poetry
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 2.1.1
poetry-version: 1.5.1
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- uses: actions/checkout@v3
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 2.1.1
poetry-version: 1.5.1
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- uses: actions/checkout@v3
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 2.1.1
poetry-version: 1.5.1
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion jobbergate-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app

RUN apt update && apt install -y curl libpq-dev gcc

RUN pip install poetry==2.1.1
RUN pip install poetry==1.5.1

COPY ./pyproject.toml ./poetry.lock /app

Expand Down
2 changes: 1 addition & 1 deletion jobbergate-api/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.11-slim-buster
RUN apt update && apt install -y curl libpq-dev gcc make

RUN curl -sSL https://install.python-poetry.org | \
POETRY_HOME=/opt/poetry POETRY_VERSION=2.1.1 python && \
POETRY_HOME=/opt/poetry POETRY_VERSION=1.5.1 python && \
cd /usr/local/bin && \
ln -s /opt/poetry/bin/poetry && \
poetry config virtualenvs.create false
Expand Down
2 changes: 1 addition & 1 deletion jobbergate-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /app
RUN apt update && apt install -y curl libpq-dev gcc

RUN curl -sSL https://install.python-poetry.org | \
POETRY_HOME=/opt/poetry POETRY_VERSION=2.1.1 python && \
POETRY_HOME=/opt/poetry POETRY_VERSION=1.5.1 python && \
ln -s /opt/poetry/bin/poetry /usr/local/bin/poetry && \
poetry config virtualenvs.create false

Expand Down
2 changes: 1 addition & 1 deletion jobbergate-composed/Dockerfile-slurm
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN apt update && apt install -y curl libpq-dev gcc python3-dev python3-pip && \
ln -s /usr/bin/python3 /usr/bin/python

RUN curl -sSL https://install.python-poetry.org | \
POETRY_HOME=/opt/poetry POETRY_VERSION=2.1.1 python && \
POETRY_HOME=/opt/poetry POETRY_VERSION=1.5.1 python && \
ln -s /opt/poetry/bin/poetry /usr/local/bin/poetry && \
poetry config virtualenvs.create false

Expand Down