mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-22 03:00:25 +00:00
Drop support for Python < 3.7
This commit is contained in:
parent
22e4ea6592
commit
bed9d3a1fd
2 changed files with 2 additions and 4 deletions
4
setup.py
4
setup.py
|
@ -36,8 +36,6 @@ setuptools.setup(
|
|||
'Natural Language :: English',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Topic :: Software Development :: Libraries',
|
||||
|
@ -57,5 +55,5 @@ setuptools.setup(
|
|||
use_scm_version=True,
|
||||
namespace_packages=['sprockets', 'sprockets.mixins'],
|
||||
test_suite='nose.collector',
|
||||
python_requires='>=3.5',
|
||||
python_requires='>=3.7',
|
||||
zip_safe=False)
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py35,py36,py37
|
||||
envlist = py37
|
||||
indexserver =
|
||||
default = https://pypi.python.org/simple
|
||||
toxworkdir = build/tox
|
||||
|
|
Loading…
Reference in a new issue