Skip to content

Commit 7b68e79

Browse files
committed
Drop support for Python 2
1 parent 65b657f commit 7b68e79

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Contact:
2323
Nathaniel J. Smith <njs@pobox.com> and Stéfan van der Walt <stefanv@berkeley.edu>
2424

2525
Dependencies:
26-
* Python 2.6+, or 3.3+
26+
* Python 3.7+
2727
* `colorspacious <https://pypi.python.org/pypi/colorspacious>`_
2828
* Matplotlib
2929
* NumPy

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
[bdist_wheel]
2-
universal=1
3-
41
[metadata]
52
license_file = LICENSE

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,22 @@
66

77
# Must be one line or PyPI will cut it off
88
DESC = ("A colormap tool")
9-
109
LONG_DESC = open("README.rst").read()
1110

1211
setup(
1312
name="viscm",
14-
version="0.9",
13+
version="0.10",
1514
description=DESC,
1615
long_description=LONG_DESC,
1716
author="Nathaniel J. Smith, Stefan van der Walt",
1817
author_email="njs@pobox.com, stefanv@berkeley.edu",
19-
url="https://github.com/bids/viscm",
18+
url="https://github.com/matplotlib/viscm",
2019
license="MIT",
2120
classifiers =
2221
[ "Development Status :: 3 - Alpha",
2322
"Intended Audience :: Developers",
2423
"Intended Audience :: Science/Research",
2524
"License :: OSI Approved :: MIT License",
26-
"Programming Language :: Python :: 2",
2725
"Programming Language :: Python :: 3",
2826
],
2927
packages=find_packages(),

0 commit comments

Comments
 (0)