Skip to content

Commit

Permalink
pyproject: set Python 3.8 because of pytest and pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ixtalo committed Oct 27, 2024
1 parent c50af87 commit d7d9f82
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
[tool.poetry]
name = "smlmqttprocessor"
version = "1.16.0"
version = "1.16.1"
description = "Process SML from libsml-sml_server and send it to MQTT."
authors = ["Ixtalo <[email protected]>"]
readme = "README.md"
license = "AGPL"

[tool.poetry.dependencies]
python = ">=3.5,<4.0"
# pylint 3.2 requires Python >=3.6
# pytest 7.3 required Python >=3.7
python = ">=3.8,<4.0"
docopt = "*"
paho-mqtt = "~=1.6"
pysml = "~=0.1.2"
Expand Down

0 comments on commit d7d9f82

Please sign in to comment.