Skip to content

Commit 31b37b6

Browse files
committed
Merge branch 'release/4.0.0' into develop
2 parents 46c6c05 + 43fef7f commit 31b37b6

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.textile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
h1. Textile Changelog
22

3+
h2. Version 4.0.0
4+
* Drop support for Python 2, hence the version bump. Update list of PY3K versions to currently-supported versions. If you need to use textile on Python 2.7 or Python 3.3 or 3.4, please use textile Version 3.0.4.
5+
* For use in PyPy environments, textile used to work well with the regex package. Lately, it's running into trouble. Please uninstall regex if this is the case for you.
6+
37
h2. Version 3.0.4
48
* BUGFIX: Restricted mode strips out CSS attributes again.
59
* Update travis to more current versions and test against current Pillow version.

CONTRIBUTORS.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ Mark Pilgrim
66
Alex Shiels
77
Jason Samsa
88
Kurt Raschke
9-
Dave Brondsema
9+
Dave Brondsema
10+
Dmitry Shachnev

setup.cfg

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
[aliases]
22
test=pytest
3-
[bdist_wheel]
4-
universal=1

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ def get_version():
4242
'License :: OSI Approved :: BSD License',
4343
'Operating System :: OS Independent',
4444
'Programming Language :: Python',
45-
'Topic :: Software Development :: Libraries :: Python Modules',
46-
'Programming Language :: Python',
4745
'Programming Language :: Python :: 3',
46+
'Programming Language :: Python :: 3 :: Only',
4847
'Programming Language :: Python :: 3.5',
4948
'Programming Language :: Python :: 3.6',
5049
'Programming Language :: Python :: 3.7',
5150
'Programming Language :: Python :: 3.8',
51+
'Topic :: Software Development :: Libraries :: Python Modules',
5252
],
5353
keywords='textile,text,html markup',
5454
install_requires=[
@@ -65,4 +65,5 @@ def get_version():
6565
cmdclass = {'test': PyTest},
6666
include_package_data=True,
6767
zip_safe=False,
68+
python_requires='~=3.5',
6869
)

textile/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '3.0.4'
1+
VERSION = '4.0.0'

0 commit comments

Comments
 (0)