Skip to content

Commit

Permalink
v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fgallaire committed Sep 5, 2016
1 parent 80e27d2 commit 16fba68
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ CJKwrap

**CJKwrap** is a library for wrapping and filling CJK text.

CJKwrap fix the issue24665 because Python2 will stay broken forever:
CJKwrap fix the issue24665 because Python 2 will stay broken forever:
https://bugs.python.org/issue24665.

CJKwrap support Python 2 (2.6 and above).
CJKwrap support **both** Python 2 (2.6 and above) and Python 3 (3.3 and above).

CJKwrap is developed by Florent Gallaire [email protected].

Expand Down
2 changes: 1 addition & 1 deletion cjkwrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""

__version__ = '1.0'
__version__ = '2.0'

import textwrap
import unicodedata
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
py_modules=['cjkwrap'],
)

0 comments on commit 16fba68

Please sign in to comment.