Skip to content

Commit 105e152

Browse files
dependabot[bot]vischedgarrmondragon
authored
chore: Bump poetry from 1.5.1 to 1.6.1 in /.github/workflows (#182)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Derek Visch <[email protected]> Co-authored-by: Edgar Ramírez Mondragón <[email protected]>
1 parent a220b0e commit 105e152

File tree

9 files changed

+23
-369
lines changed

9 files changed

+23
-369
lines changed

.flake8

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[flake8]
2+
ignore = D105,D203,D213,W503
23
docstring-convention = google
4+
max-line-length = 88
5+
max-complexity = 10

.github/workflows/ci_workflow.yml

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,6 @@ on:
99
inputs: {}
1010

1111
jobs:
12-
linting:
13-
runs-on: ubuntu-latest
14-
strategy:
15-
matrix:
16-
# Only lint using the primary version used for dev
17-
python-version: [3.9]
18-
steps:
19-
- uses: actions/checkout@v4
20-
- name: Set up Python '${{ matrix.python-version }}'
21-
uses: actions/setup-python@v4
22-
with:
23-
python-version: '${{ matrix.python-version }}'
24-
25-
- name: Install Poetry
26-
env:
27-
PIP_CONSTRAINT: .github/workflows/constraints.txt
28-
run: |
29-
python -m pip install --upgrade pip
30-
pip install poetry
31-
32-
- name: Install dependencies
33-
run: |
34-
poetry install
35-
36-
- name: Run lint command from tox.ini
37-
run: |
38-
poetry run tox -e lint
39-
4012
pytest:
4113
runs-on: ubuntu-latest
4214
strategy:
@@ -61,7 +33,7 @@ jobs:
6133
PIP_CONSTRAINT: .github/workflows/constraints.txt
6234
run: |
6335
python -m pip install --upgrade pip
64-
pip install poetry
36+
pipx install poetry
6537
- name: Install dependencies
6638
run: |
6739
poetry install

.github/workflows/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
poetry==1.5.1
1+
poetry==1.6.1

.pre-commit-config.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ repos:
3737
hooks:
3838
- id: flake8
3939
additional_dependencies:
40-
- darglint==1.8.1
41-
- flake8-annotations==2.9.0
4240
- flake8-docstrings==1.6.0
43-
files: 'meltano/edk/.*'
4441

4542
- repo: https://github.com/asottile/pyupgrade
4643
rev: v3.13.0

0 commit comments

Comments
 (0)