Skip to content

Commit

Permalink
feat(deps): Update default Poetry version to 1.0 (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: Aaron Batilo <AaronBatilo@gmail.com>
  • Loading branch information
siddhantgoel and abatilo committed Jun 10, 2020
1 parent d3b05ad commit d88c1c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
python_version: [3.5, 3.6, 3.7, 3.8]
poetry_version: [0.12.17]
poetry_version: [1.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -25,14 +25,14 @@ jobs:
uses: abatilo/actions-poetry@v1.5.0
with:
python_version: 3.8.0
poetry_version: 0.12.17
poetry_version: 1.0
working_directory: ./working_dir # Optional, defaults to '.'
args: install
- name: Run pytest
uses: abatilo/actions-poetry@v1.5.0
with:
python_version: 3.8.0
poetry_version: 0.12.17
poetry_version: 1.0
working_directory: ./working_dir
args: run python -m pytest --cov=src --cov-branch --cov-fail-under=100 tests/
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -15,7 +15,7 @@ inputs:
poetry_version:
description: 'The version of poetry to install'
required: true
default: '0.12.17'
default: '1.0'
working_directory:
description: 'The directory to run poetry commands in.'
required: false
Expand Down

0 comments on commit d88c1c7

Please sign in to comment.