diff options
| author | Stefano Pigozzi <[email protected]> | 2019-11-26 13:58:21 +0100 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-12-04 18:40:39 -0500 |
| commit | 6065cee7a04bf2a2a69fd12c7da5e835ef9382cf (patch) | |
| tree | 6e26924bed1e9b76036fbd87892dbcca4265be4f | |
| parent | Add `Activity.created_at` (diff) | |
| download | discord.py-6065cee7a04bf2a2a69fd12c7da5e835ef9382cf.tar.xz discord.py-6065cee7a04bf2a2a69fd12c7da5e835ef9382cf.zip | |
Change websockets version to >=6.0, !=7
Allow the usage of newer websockets versions, as the bug preventing the upgrade was fixed in websockets 8.0, while allowing the install of discord.py on Python 3.5.
| -rw-r--r-- | requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index ffc77f93..8dfc5301 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ aiohttp>=3.6.0,<3.7.0 -websockets>=6.0,<7.0
\ No newline at end of file +websockets>=6.0,!=7.0,!=8.0,!=8.0.1,<9.0 |