Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jvitkauskas committed Jan 28, 2024
1 parent cab3c96 commit 558ef7d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7"]
python-version: ["3.8"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pymodbus==3.5.4
pymodbus==3.6.3
pyModbusTCP==0.2.1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@

setuptools.setup(
name="pybls21",
version="4.0.2",
version="4.0.3",
author="Julius Vitkauskas",
author_email="zadintuvas@gmail.com",
description="An api allowing control of AC state (temperature, on/off, speed) of an Blauberg S21 device locally over TCP",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jvitkauskas/pybls21",
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=["pymodbus>=3.5.4,<4.0"],
install_requires=["pymodbus>=3.6.3,<4.0"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
python_requires=">=3.8",
)

0 comments on commit 558ef7d

Please sign in to comment.