From affc066fc7b28265dc248b0bf30628a11303dc98 Mon Sep 17 00:00:00 2001 From: fitnr Date: Sun, 10 May 2020 19:04:45 -0400 Subject: [PATCH] v0.6 --- .travis.yml | 5 ++--- HISTORY.rst | 4 ++++ README.md | 2 -- setup.py | 6 +++--- twitter_markov/__init__.py | 2 +- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2db86f6..ac0f1d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,11 +17,10 @@ language: python python: - - 2.7 - - 3.4 - 3.5 - 3.6 - - pypy + - 3.7 + - 3.8 - pypy3 before_install: travis_retry pip install "setuptools>=17.1" "pbr>=0.11,<1.0" mock coverage diff --git a/HISTORY.rst b/HISTORY.rst index b2beece..abd537b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,7 @@ +0.6.0 +----- +* Remove support for Python 2 + 0.5.0 ----- * Allow for 280-character tweets diff --git a/README.md b/README.md index 99384bf..aa87640 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,7 @@ twitter markov ============== Create markov chain ("_ebooks") accounts on Twitter. - The audience for this library is those with at least basic Python experience. Before you set this up, you'll need: - * A twitter account * A twitter application (register at [dev.twitter.com](http://dev.twitter.com)) with authentication keys for the account ([read more](https://dev.twitter.com/oauth)) * A text for the bot to learn from, which can be a text file or a Twitter archive. Several thousand lines are needed to get decent results, with fewer than 100 or so it won't work at all. diff --git a/setup.py b/setup.py index 27d0199..88d287c 100644 --- a/setup.py +++ b/setup.py @@ -54,17 +54,17 @@ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Operating System :: OS Independent', ], zip_safe=True, install_requires=[ - 'twitter_bot_utils>=0.11.6.post1,<0.12', + 'twitter_bot_utils>=0.12.0', 'markovify>=0.2.4,<0.4', 'python-Levenshtein>=0.12.0, <0.13', 'wordfilter>=0.1.8', diff --git a/twitter_markov/__init__.py b/twitter_markov/__init__.py index 9f6b3a5..fd983c1 100644 --- a/twitter_markov/__init__.py +++ b/twitter_markov/__init__.py @@ -17,4 +17,4 @@ from .twitter_markov import TwitterMarkov from . import checking -__version__ = "0.5.1" +__version__ = "0.6.0"