Skip to content

Commit 0317539

Browse files
authored
324 pinned pyyaml version incompatible with latest cython 300 (#325)
* change pyYAML to at least v6.0.x * Fix Changelog with latest releases
1 parent 0122322 commit 0317539

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
run: poetry run mypy --show-error-codes --strict --no-warn-unused-ignores mqtt_io
2727
- name: Test with behave
2828
run: poetry run behave -t ~skip mqtt_io/tests/features
29+
2930
publish:
3031
name: Publish to PyPI
3132
if: github.event_name == 'release' && github.event.action == 'created'

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@ Unreleased
22
==========
33
- Nothing!
44

5+
.v2.2.9d - 2023-07-18
6+
====================
7+
- new sensors
8+
- fix for reconnection problem
9+
10+
.v2.2.8 - 2023-01-19
11+
====================
12+
- Fix for #280 by @rlehfeld in #281
13+
- Fix reconnects_remaining referenced before assignment by @SamLeatherdale in #274
14+
- Only create one instance of sensor_module for ADS1x15 by @shbatm in #286
15+
- PN532 NFC/RFID reader implementation by @vytautassurvila in #269
16+
- Update README.md by @OzGav in #264
17+
- FIX OrangePi module by @neatherweb in #285
18+
- New DockerPi 4 Channel Relay GPIO module by @claudegel in #246
19+
- Digital Output: fix initial state inconsistency by @hacker-cb in #238
20+
- Add module mcp3xxx by @koleo9am in #227
21+
- Always remove finished transient_tasks. by @gmsoft-tuxicoman in #301
22+
523
.v2.2.7 - 2022-07-07
624
====================
725
- Fix some minor pylint issues and silence some others.

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ WORKDIR /home/mqtt_io
4141

4242
COPY --from=requirements --chown=mqtt_io /home/mqtt_io/venv ./venv
4343
COPY --from=requirements /requirements.txt ./
44+
RUN venv/bin/python -m pip install --upgrade pip
4445
RUN venv/bin/pip install -r requirements.txt
4546

4647
COPY --chown=mqtt_io mqtt_io mqtt_io

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation = "https://flyte.github.io/mqtt-io/"
99

1010
[tool.poetry.dependencies]
1111
python = "^3.6"
12-
PyYAML = "^5.4"
12+
PyYAML = "^6.0"
1313
Cerberus = "^1.3.2"
1414
typing-extensions = "^3.7.4"
1515
dataclasses = { version = "^0.8", python = ">=3.6,<3.7" }

0 commit comments

Comments
 (0)