Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump poetry version for github workflows to 1.2.2 #1082

Merged
merged 3 commits into from
Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
16 changes: 8 additions & 8 deletions .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: Gr1N/setup-poetry@v4
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.4
poetry-version: 1.2.2
- run: poetry install
- run: poetry run poe test
- run: poetry run poe typecheck
Expand All @@ -33,9 +33,9 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: Gr1N/setup-poetry@v4
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.4
poetry-version: 1.2.2
- name: Get git release tag
run: echo "::set-output name=git-release-tag::yapapi $(git describe --tags)"
id: git_describe
Expand Down Expand Up @@ -66,9 +66,9 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: Gr1N/setup-poetry@v4
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.4
poetry-version: 1.2.2
- name: Retrieve the built package
uses: actions/download-artifact@v2
with:
Expand All @@ -90,9 +90,9 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: Gr1N/setup-poetry@v4
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.4
poetry-version: 1.2.2
- name: Retrieve the built package
uses: actions/download-artifact@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/goth-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
python-version: '3.8.0'

- name: Configure poetry
uses: Gr1N/setup-poetry@v4
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.6
poetry-version: 1.2.2

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/goth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
python-version: '3.8.0'

- name: Configure poetry
uses: Gr1N/setup-poetry@v4
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.6
poetry-version: 1.2.2

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v7
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.13
poetry-version: 1.2.2

- run: echo "::set-output name=ENABLE::1"
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pexpect = {version = "^4.8.0", optional = true}
# Docs
sphinx = { version = "^4.0.1", optional = true }
sphinx-autodoc-typehints = { version = "^1.12.0", optional = true }
sphinx-rtd-theme = { version = "^1.0.0", optional = true}
sphinx-rtd-theme = { version = "^1.0.0", optional = true }

[tool.poetry.extras]
integration-tests = ['goth', 'pytest', 'pytest-asyncio', 'pexpect']
Expand Down