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

chore(templates): Remove Poetry version pin for GitHub Actions #826

Merged
merged 10 commits into from
Sep 29, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,9 @@ jobs:
with:
python-version: {{ '${{ matrix.python-version }}' }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.8
- name: Install dependencies
run: |
poetry install
python -m pip install --upgrade pip
pip install poetry==1.2.*
- name: Run lint command from tox.ini
run: |
poetry run tox -e lint
Expand All @@ -47,9 +44,9 @@ jobs:
with:
python-version: {{ '${{ matrix.python-version }}' }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.11
run: |
python -m pip install --upgrade pip
pip install poetry==1.2.*
- name: Install dependencies
run: |
poetry install
Expand Down