Skip to content

Commit

Permalink
324 pinned pyyaml version incompatible with latest cython 300 (#325)
Browse files Browse the repository at this point in the history
* change pyYAML to at least v6.0.x
* Fix Changelog with latest releases
  • Loading branch information
BenjiU authored Jul 21, 2023
1 parent 0122322 commit 0317539
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
run: poetry run mypy --show-error-codes --strict --no-warn-unused-ignores mqtt_io
- name: Test with behave
run: poetry run behave -t ~skip mqtt_io/tests/features

publish:
name: Publish to PyPI
if: github.event_name == 'release' && github.event.action == 'created'
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@ Unreleased
==========
- Nothing!

.v2.2.9d - 2023-07-18
====================
- new sensors
- fix for reconnection problem

.v2.2.8 - 2023-01-19
====================
- Fix for #280 by @rlehfeld in #281
- Fix reconnects_remaining referenced before assignment by @SamLeatherdale in #274
- Only create one instance of sensor_module for ADS1x15 by @shbatm in #286
- PN532 NFC/RFID reader implementation by @vytautassurvila in #269
- Update README.md by @OzGav in #264
- FIX OrangePi module by @neatherweb in #285
- New DockerPi 4 Channel Relay GPIO module by @claudegel in #246
- Digital Output: fix initial state inconsistency by @hacker-cb in #238
- Add module mcp3xxx by @koleo9am in #227
- Always remove finished transient_tasks. by @gmsoft-tuxicoman in #301

.v2.2.7 - 2022-07-07
====================
- Fix some minor pylint issues and silence some others.
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ WORKDIR /home/mqtt_io

COPY --from=requirements --chown=mqtt_io /home/mqtt_io/venv ./venv
COPY --from=requirements /requirements.txt ./
RUN venv/bin/python -m pip install --upgrade pip
RUN venv/bin/pip install -r requirements.txt

COPY --chown=mqtt_io mqtt_io mqtt_io
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation = "https://flyte.github.io/mqtt-io/"

[tool.poetry.dependencies]
python = "^3.6"
PyYAML = "^5.4"
PyYAML = "^6.0"
Cerberus = "^1.3.2"
typing-extensions = "^3.7.4"
dataclasses = { version = "^0.8", python = ">=3.6,<3.7" }
Expand Down

0 comments on commit 0317539

Please sign in to comment.