From 0c37efef6c94640d0bdf8b8e2f72123ca5eb4826 Mon Sep 17 00:00:00 2001 From: Theelgirl <43764914+Theelgirl@users.noreply.github.com> Date: Wed, 28 Oct 2020 13:59:44 +0000 Subject: [PATCH] Works on 3.9 Also made sure users have recent(ish) package versions --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index fb74bd0..562ed54 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ setup( "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Operating System :: Microsoft :: Windows :: Windows 10", "Operating System :: Microsoft :: Windows :: Windows 8", "Operating System :: Microsoft :: Windows :: Windows 8.1", @@ -77,9 +78,9 @@ setup( "cython >= 3.0a6" ], install_requires=[ - "bitstring", - "pillow", - "tqdm", + "bitstring >= 3.1.6", + "pillow >= 7.2.0", + "tqdm >= 4.49.0", "cryptography >= 3.1.1", "pycryptodome >= 3.9.8" ],