Skip to content

Commit

Permalink
Update ruleset, update regex dependency to avoid a bug
Browse files Browse the repository at this point in the history
Also updated copyright dates. Disabled Travis-CI PyPy tests due to weird
failures.
  • Loading branch information
intgr committed Jul 15, 2016
1 parent 30fb97d commit 3bc3729
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 31 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ python:
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
cache:
directories:
- $PWD/wheelhouse # cache the dependencies
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
All files except retf.txt are licensed as follows
=================================================

Copyright (c) 2014-2015 Marti Raudsepp <[email protected]> & contributors
Copyright (c) 2014-2016 Marti Raudsepp <[email protected]> & contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ Resources
Changelog
---------

0.2.1 (2016-07-15)

* Update bundled ruleset
* Update regex dependency version to avoid `regex issue #216`_
* Officially add Python 3.5 support

.. _`regex issue #216`: https://bitbucket.org/mrabarnett/mrab-regex/issues/216/invalid-match-when-using-negative

0.2.0 (2015-09-09)

* Several fixes with Unicode on Python 2
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
beautifulsoup4
regex
regex>=2016.07.14
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='topy',
version='0.2.0',
version='0.2.1',

# PyPI metadata
author='Marti Raudsepp',
Expand All @@ -26,6 +26,7 @@
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Documentation',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Text Processing :: Filters',
Expand All @@ -38,7 +39,7 @@
'': ['*.txt']
},
install_requires=[
'regex',
'regex>=2016.07.14',
'beautifulsoup4',
],
test_suite='tests',
Expand Down
Loading

0 comments on commit 3bc3729

Please sign in to comment.