nekos-best / nekos-best.py

A simple async Python wrapper for nekos.best API.
GNU Affero General Public License v3.0
17 stars 3 forks source link

🔧 Fixed issue with aiohttp version #8

Closed okineadev closed 8 months ago

okineadev commented 8 months ago

When installing aiogram together with nekosbest, there were discrepancies between the necessary versions of aiohttp. So I fixed it by removing the max version of the package

@@ -32,7 +33,7 @@ include_package_data = False
  packages = find_namespace:
  python_requires = >=3.8
  install_requires =
-     aiohttp>=3.6.2,<3.8.1
+     aiohttp>=3.6.2
PredaaA commented 8 months ago

Pushed and released. https://github.com/nekos-best/nekos-best.py/commit/ff2e815d16a7ed8164971728efa65ac240040838

okineadev commented 8 months ago

Thanks!