Skip to content

Commit 55c9681

Browse files
Amos VryhofSaurabh Kumar
authored andcommitted
Upgraded requirement versions for Python 3.7 (#4)
1 parent 99438aa commit 55c9681

File tree

6 files changed

+25
-4
lines changed

6 files changed

+25
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.2
2+
current_version = 0.2.3
33
commit = True
44
tag = True
55

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- '3.4'
77
- '3.5'
88
- '3.6'
9+
- '3.7'
910
- pypy
1011

1112
install:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Features
1313
- Validates against list of `banned
1414
words <https://github.com/theskumar/python-usernames/blob/master/usernames/reserved_words.py>`__
1515
that should not be used as username.
16-
- Python 2.7, 3.4, 3.5, 3.6, pypi
16+
- Python 2.7, 3.4, 3.5, 3.6, 3.7 pypi
1717

1818
Installation
1919
------------

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ exclude = .tox,.git,venv,docs
88
[metadata]
99
description-file = README.rst
1010

11-
[pytest]
11+
[tool:pytest]
1212
norecursedirs = .svn _build tmp* dist venv* .git

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
name="python-usernames",
1414
description="Python library to validate usernames suitable for use in public facing applications.",
1515
long_description=readme,
16-
version="0.2.2",
16+
version="0.2.3",
1717
author="Saurabh Kumar",
1818
author_email="[email protected]",
1919
url="https://github.com/theskumar/python-usernames",
@@ -47,6 +47,9 @@
4747
# 'Programming Language :: Python :: 3.2',
4848
'Programming Language :: Python :: 3.3',
4949
'Programming Language :: Python :: 3.4',
50+
'Programming Language :: Python :: 3.5',
51+
'Programming Language :: Python :: 3.6',
52+
'Programming Language :: Python :: 3.7',
5053
# 'Programming Language :: Python :: 3.4',
5154
'Intended Audience :: Developers',
5255
'Intended Audience :: System Administrators',

tox.ini

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# tox (https://tox.readthedocs.io/) is a tool for running tests
2+
# in multiple virtualenvs. This configuration file will run the
3+
# test suite on all supported python versions. To use it, "pip install tox"
4+
# and then run "tox" from this directory.
5+
6+
[tox]
7+
envlist = py27, py34, py35, py36, py37
8+
9+
[testenv]
10+
deps =
11+
12+
commands =
13+
pip install python-coveralls
14+
pip install -q -r requirements.txt
15+
pip install --editable .
16+
python tests/test_usernames.py
17+

0 commit comments

Comments
 (0)