chore: tweak 'python_requires' to match supported Python versions (#114)
* chore: tweak 'python_requires' to match supported Python versions
Release-As: 1.24.0
* tests: drop Python 3.5 for unit tests
diff --git a/setup.py b/setup.py
index baea1c0..576363a 100644
--- a/setup.py
+++ b/setup.py
@@ -101,7 +101,7 @@
namespace_packages=namespaces,
install_requires=dependencies,
extras_require=extras,
- python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
+ python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*",
include_package_data=True,
zip_safe=False,
)