PyVCEChecker
PyVCEChecker
Hello! I notice that the dependency of this distribution ``` install_requires=["Django >=2.1"] ``` I found that Django>=2.1 requires Python>=3.5 , and you declare **supported python:3.5+** in README. I guess you...
Currently, the keyword argument **python_requires** of **setup()** is not set, and thus it is assumed that this distribution is compatible with all Python versions. However, I found it is not...
Currently, the keyword argument **python_requires** of **setup()** is not set, and thus it is assumed that this distribution is compatible with all Python versions. However, I found it is not...
Hello! I noticed such a declaration in setup.py ``` classes = """ Programming Language :: Python :: 3 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8...
Hello! I noticed that "amcrest" use a Python3-specific syntax rule "f_string", which lead to installation failure of Inject in Python 2. And there is such a declaration. ``` classifiers=[ ......
Hello! I noticed that django-categories "Removed support for Python 2.7" and "incompatible with Python 3.10". I guess you want to limit compatible python versions. And I think it is a...
I noticed such a declaration in README >"It depends on pySerial and is compatible with Python 3.5 and later." I guess you want to set **python>=3.5**. But I think it...
Hello! I noticed the code snippet in setup.py ```python # Get the PyPI package info from the readme this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read()...
Hello! I noticed such a declaration in setup.cfg ``` classifiers= ... Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming...
Currently, the keyword argument **python_requires** of **setup()** is not set, and thus it is assumed that this distribution is compatible with all Python versions. However, I found it is not...