Skip to content

Commit

Permalink
make requests version less strict
Browse files Browse the repository at this point in the history
  • Loading branch information
broox committed Jan 19, 2023
1 parent 41db294 commit a5aa4ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requests==2.28.1
requests>=2.28.1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
setup(
name='nuheat',
packages=['nuheat'],
version='1.0.0',
version='1.0.1',
description='A Python library that allows control of connected NuHeat Signature radiant floor thermostats.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Derek Brooks',
author_email='[email protected]',
url='https://github.com/broox/python-nuheat',
download_url='https://github.com/broox/python-nuheat/archive/1.0.0.tar.gz',
download_url='https://github.com/broox/python-nuheat/archive/1.0.1.tar.gz',
license='MIT',
keywords=['nuheat', 'thermostat', 'home automation', 'python'],
classifiers=[
Expand All @@ -30,7 +30,7 @@
'Topic :: Home Automation',
],
install_requires=[
'requests==2.28.1',
'requests>=2.28.1',
],
extras_require={
'dev': [
Expand Down

0 comments on commit a5aa4ea

Please sign in to comment.