Skip to content

Commit

Permalink
add support for new versions of dependencies
Browse files Browse the repository at this point in the history
* bleak 0.13
* pyyaml 6
* pytest-asyncio 0.16

Also bump the version 0.8.0 -> 0.8.1
  • Loading branch information
newAM committed Oct 20, 2021
1 parent 9ec0d82 commit 4ec237b
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 161 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.1] - 2021-10-20
### Added
- Added support for bleak version `~0.13`.
- Added support for pyyaml version `^6.0.0`.

## [0.8.0] - 2021-10-02
### Fixed
- Use service UUID instead of device name for discovery.
Expand Down Expand Up @@ -70,7 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2020-09-07
- Initial release

[Unreleased]: https://github.com/newAM/idasen/compare/v0.8.0...HEAD
[Unreleased]: https://github.com/newAM/idasen/compare/v0.8.1...HEAD
[0.8.1]: https://github.com/newAM/idasen/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/newAM/idasen/compare/v0.7.1...v0.8.0
[0.7.1]: https://github.com/newAM/idasen/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/newAM/idasen/compare/v0.6.0...v0.7.0
Expand Down
20 changes: 0 additions & 20 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,6 @@ Install
python3.8 -m pip install --upgrade idasen
Developers Install
==================

Development is done with `poetry`_, a virtual environment manager.
First, `install poetry`_ using their guide.

Then install all the packages using poetry install:

.. code-block:: bash
poetry install
To install this package locally build it then install with pip:


.. code-block:: bash
poetry build
python3.8 -m pip install dist/idasen-0.6.0-py3-none-any.whl
Configuration
*************
Configuration that is not expected to change frequently can be provided via a
Expand Down
Loading

0 comments on commit 4ec237b

Please sign in to comment.