Skip to content

Commit

Permalink
cut 0.14.0.rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Nov 11, 2021
1 parent 1045062 commit 4176bc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------------
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 4176bc0

Please sign in to comment.