Skip to content

Commit

Permalink
Update install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
albertogeniola committed Feb 11, 2024
1 parent 8589884 commit de5f803
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Due to the popularity of the library, I've decided to list it publicly on the Pi
So, the installation is as simple as typing the following command:

```bash
pip install meross_iot==0.4.6.0
pip install meross_iot==0.4.6.1
```

## Usage & Full Documentation
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
paho-mqtt>=1.5.0, < 2.0.0
requests>=2.19.1, < 3.0.0
aiohttp[speedups]>=3.7.4.post0, < 4.0.0
paho-mqtt>=1.5.0,<2.0.0
requests>=2.19.1,<3.0.0
aiohttp[speedups]>=3.7.4.post0,<4.0.0
pytest==6.2.5
pytest-html==3.1.1
pytest-cov==2.12.1
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
paho-mqtt>=1.5.0, < 2.0.0
requests>=2.19.1, < 3.0.0
aiohttp[speedups]>=3.7.4.post0, < 4.0.0
paho-mqtt>=1.5.0,<2.0.0
requests>=2.19.1,<3.0.0
aiohttp[speedups]>=3.7.4.post0,<4.0.0
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
'Tracker': 'https://github.com/albertogeniola/MerossIot/issues',
},
install_requires=[
'paho-mqtt>=1.5.0',
'requests>=2.19.1',
'aiohttp[speedups]>=3.7.4.post0'
'paho-mqtt>=1.5.0,<2.0.0',
'requests>=2.19.1,<3.0.0',
'aiohttp[speedups]>=3.7.4.post0,<4.0.0'
],
python_requires='>=3.7',
test_suite='tests',
Expand Down

0 comments on commit de5f803

Please sign in to comment.