From 83d8e11c8e8d7af11bf6efcd98aa21524000912b Mon Sep 17 00:00:00 2001 From: Jacob Gilbert Date: Fri, 6 Jan 2023 09:42:53 -0700 Subject: [PATCH] update build config will not build 2.x support and updated classifiers and envlist --- setup.cfg | 3 --- setup.py | 6 ++++-- tox.ini | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2bc7ce72..b7e47898 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,2 @@ [aliases] test=pytest - -[wheel] -universal = 1 diff --git a/setup.py b/setup.py index 697103bd..63336d2a 100755 --- a/setup.py +++ b/setup.py @@ -22,12 +22,14 @@ long_description=longdesc, url='https://github.com/gnuradio/SigMF', classifiers=[ + 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', + 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], entry_points={ 'console_scripts': [ diff --git a/tox.ini b/tox.ini index 433b33fa..d9e8766a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] skip_missing_interpreters = True -envlist = py27, py34, py35, py36, py37 +envlist = py36, py37, py38, py39, py310 [testenv] usedevelop = True