diff --git a/releasenotes.rst b/releasenotes.rst index f953a56cb..27db65a5b 100644 --- a/releasenotes.rst +++ b/releasenotes.rst @@ -11,7 +11,7 @@ Dates are written as DD/MM/YYYY - add support for styling notebook tabs PR #452 - drop official support for Python 3.6 and add minimal support for Python 3.10 As with earlier Python version, support for 3.10 is currently limited to running on - Python 3.10 excluding any features that were added on Python 3.10 + Python 3.10 excluding any features that were added in Python 3.10 0.13.0 - 19/04/2021 ------------------- diff --git a/setup.py b/setup.py index 7f9b7d38c..4196ac0df 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #------------------------------------------------------------------------------ -# Copyright (c) 2013-2020, Nucleic Development Team. +# Copyright (c) 2013-2021, Nucleic Development Team. # # Distributed under the terms of the Modified BSD License. # @@ -165,15 +165,15 @@ def run(self): 'License :: OSI Approved :: BSD License', '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', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython', ], - python_requires='>=3.6', + python_requires='>=3.7', requires=['atom', 'qtpy', 'ply', 'kiwisolver'], - install_requires=['atom>=0.6.0', + install_requires=['atom>0.6.0', # XXX update te for 0.14.0 final 'kiwisolver>=1.2.0', 'ply>=3.4', "bytecode>=0.11.0"