From 842a6cf03bf8844fb1d7d6744f2a9ba7b43e0590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=9Awi=C4=99cicki?= Date: Sat, 27 Aug 2022 11:21:08 +0200 Subject: [PATCH] support only 3.7+ pythons --- .travis.yml | 22 +++++++++------------- CHANGES.txt | 1 + setup.py | 8 +++----- 3 files changed, 13 insertions(+), 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index 314cfc4..80d5eb8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,17 @@ language: python python: -- '2.7' -- '3.4' -- '3.5' -- '3.6' -- '3.7' -- '3.8' -- '3.9' -- '3.10' + - '3.7' + - '3.8' + - '3.9' + - '3.10' install: -- python setup.py install -- pip install coverage -- pip install coveralls + - python setup.py install + - pip install coverage + - pip install coveralls script: -- coverage run --source=random_words setup.py test + - coverage run --source=random_words setup.py test after_success: -- coveralls + - coveralls sudo: false deploy: provider: pypi diff --git a/CHANGES.txt b/CHANGES.txt index 31fdf54..3d5fc38 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,4 @@ +v0.4.0, 2022-08-27 -- Add Min Letter Count Feature v0.3.0, 2020-06-20 -- Fix the mess with versions v0.2.3, 2020-06-20 -- Use dirname instead of split v0.2.2, 2020-06-20 -- Add python 3.7 and 3.8 to travis (remove 3.3) diff --git a/setup.py b/setup.py index c47e1fb..c583b13 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def run_tests(self): setup( name='RandomWords', - version='0.3.0', + version='0.4.0', author='Tomek Święcicki', author_email='tomislater@gmail.com', packages=['random_words'], @@ -34,12 +34,10 @@ def run_tests(self): 'Programming Language :: Python', 'Natural Language :: English', 'Development Status :: 5 - Production/Stable', - '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', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Software Development :: Libraries :: Python Modules', ], include_package_data=True,