Skip to content

Commit

Permalink
update poetry versions (#986)
Browse files Browse the repository at this point in the history
* update poetry versions

* remove codecov from dev dependencies

* update poetry.lock

* disable cache for windows
  • Loading branch information
briantist committed May 10, 2023
1 parent 9dbfa98 commit c6f27cb
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 31 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1.3.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.14
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true

Expand All @@ -37,7 +37,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: ${{ matrix.python-version != '3.6' && 'poetry' || !startsWith(matrix.os, 'windows') && 'poetry' || '' }}
cache: ${{ !startsWith(matrix.os, 'windows') && 'poetry' || '' }}
# cache: ${{ matrix.python-version != '3.6' && 'poetry' || !startsWith(matrix.os, 'windows') && 'poetry' || '' }}

- name: Install dependencies
run: poetry install --no-interaction --no-root
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1.3.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.14
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down Expand Up @@ -61,9 +61,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1.3.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.14
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down Expand Up @@ -121,9 +121,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1.3.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.14
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down Expand Up @@ -176,9 +176,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1.3.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.14
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1.3.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.14
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down
21 changes: 4 additions & 17 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ black = "22.6.0"
Flask = "2.0.3"
Flask-SQLAlchemy = "^2.5.1"
flake8 = "4.0.1"
codecov = "^2.1.12"
coverage = "6.2"
ipaddress = "^1.0.23"
mock = "^4.0.3"
Expand Down

0 comments on commit c6f27cb

Please sign in to comment.