spenceforce / pdb-attach

A python debugger that can attach to running processes.
BSD 3-Clause "New" or "Revised" License
30 stars 1 forks source link

Use appropriate Python version classifier in package #1

Closed alex-dr closed 3 years ago

alex-dr commented 3 years ago

https://pypi.org/classifiers/ lists available classifiers for setup.py

With no version classifier, it's easy to accidentally install this into a Python 2, or Python 3.4 environment, where it does not work.

Due to use of type hinting this package requires python 3.6 or greater, and that should be annotated.

spenceforce commented 3 years ago

Got it. I'll add those when I have a spare moment. As far as the type hints go, I'll probably move all type hints over to a stub file so as not to require a python version that supports them.

spenceforce commented 3 years ago

The Python version classifiers will be in the next release.