Skip to content

Commit

Permalink
support only 3.7+ pythons
Browse files Browse the repository at this point in the history
  • Loading branch information
tomislater committed Aug 27, 2022
1 parent d8723c0 commit 842a6cf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
22 changes: 9 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
packages=['random_words'],
Expand All @@ -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,
Expand Down

0 comments on commit 842a6cf

Please sign in to comment.