-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Python 2 and Python 3.5 supporting code #830
base: master
Are you sure you want to change the base?
Conversation
@@ -104,7 +97,6 @@ def run(self): | |||
'Intended Audience :: Science/Research', | |||
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', | |||
'Operating System :: OS Independent', | |||
'Programming Language :: Python :: 2.7', | |||
'Programming Language :: Python :: 3.6', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would specify here that also 3.10 as well as 3.11 are supported. Otherwise pip will refuse to install it on these platforms.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I absolutely should add 3.10 and 3.11 and I'll push that in a different PR.
I tried to install the published version of pymavlink on python 3.11.3 with pip 23.1.2 and it worked fine despite the classifiers, so I think these are informational only.
Thanks for the comment! In looking it up, I learned about the setup(python_requires=...)
argument which does enforce versions via pip https://python3statement.org/practicalities/
Code cleanup in furtherance of #556