Skip to content

Commit

Permalink
Drop Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fqqb committed Nov 3, 2023
1 parent 0634e64 commit 88ee0c4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
packages=setuptools.find_namespace_packages(where="src"),
package_dir={"": "src"},
entry_points={"console_scripts": ["yamcs = yamcs.cli.__main__:main"]},
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -27,7 +27,6 @@
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -37,8 +36,8 @@
"Operating System :: OS Independent",
],
platforms="Posix; MacOS X; Windows",
install_requires=["argcomplete", "python-dateutil", "yamcs-client>=1.9.0"],
extras_require={"kerberos": ["yamcs-client-kerberos>=1.2.0"]},
install_requires=["argcomplete", "python-dateutil", "yamcs-client>=1.9.1"],
extras_require={"kerberos": ["yamcs-client-kerberos>=1.2.1"]},
include_package_data=True,
zip_safe=False,
)

0 comments on commit 88ee0c4

Please sign in to comment.