-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for new versions of dependencies
* bleak 0.13 * pyyaml 6 * pytest-asyncio 0.16 Also bump the version 0.8.0 -> 0.8.1
- Loading branch information
Showing
5 changed files
with
131 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,14 +12,14 @@ jobs: | |
style: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
- name: Install Poetry | ||
uses: abatilo/[email protected].3 | ||
uses: abatilo/[email protected].4 | ||
with: | ||
poetry-version: "1.1.6" | ||
poetry-version: "1.1.10" | ||
- name: Poetry Install | ||
run: poetry install | ||
- name: Run flake8 | ||
|
@@ -32,14 +32,14 @@ jobs: | |
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
- name: Install Poetry | ||
uses: abatilo/[email protected].3 | ||
uses: abatilo/[email protected].4 | ||
with: | ||
poetry-version: "1.1.6" | ||
poetry-version: "1.1.10" | ||
- name: Install bluetooth | ||
run: | | ||
sudo apt update | ||
|
@@ -55,15 +55,15 @@ jobs: | |
matrix: | ||
python-version: [3.8, 3.9] | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Poetry | ||
uses: abatilo/[email protected].3 | ||
uses: abatilo/[email protected].4 | ||
with: | ||
poetry-version: "1.1.6" | ||
poetry-version: "1.1.10" | ||
- name: Install bluetooth | ||
run: | | ||
sudo apt update | ||
|
@@ -84,15 +84,15 @@ jobs: | |
needs: pytest | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python 3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
- name: Install Poetry | ||
uses: abatilo/[email protected].3 | ||
uses: abatilo/[email protected].4 | ||
with: | ||
poetry-version: "1.1.6" | ||
poetry-version: "1.1.10" | ||
- name: Poetry Install | ||
run: poetry install | ||
- name: Finished | ||
|
@@ -106,14 +106,14 @@ jobs: | |
if: startsWith(github.ref, 'refs/tags/v') | ||
needs: [pytest, docs, style] | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
- name: Install Poetry | ||
uses: abatilo/[email protected].3 | ||
uses: abatilo/[email protected].4 | ||
with: | ||
poetry-version: "1.1.6" | ||
poetry-version: "1.1.10" | ||
- name: Poetry Install | ||
run: poetry install | ||
- name: Poetry publish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.