Skip to content

Commit fd00323

Browse files
authored
Version 0.0.22 (#69)
* Add new contributor * Add Python 3.8 support * Version 0.0.22
1 parent f5d5c26 commit fd00323

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ matrix:
1111
- python: 3.7
1212
dist: xenial
1313
env: TOXENV=py37
14-
- python: 3.7
14+
- python: 3.8
15+
dist: xenial
16+
env: TOXENV=py38
17+
- python: 3.8
1518
dist: xenial
1619
env: TOXENV=lint
1720

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,13 +386,14 @@ Command Line Arguments
386386
attempt to use this number of processes, Default: 1
387387
-q, --quiet disable console log output generated by validations
388388
389-
Authors
390-
-------
389+
Contributors
390+
------------
391391
392392
- `Dustin Ingram <https://github.com/di>`__
393393
- `Clara Bennett <https://github.com/csojinb>`__
394394
- `Aditya Natraj <https://github.com/adityanatra>`__
395395
- `Sterling Petersen <https://github.com/sterlingpetersen>`__
396+
- `Aleix <https://github.com/maleix>`__
396397
397398
License
398399
-------

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55
from setuptools.command.test import test as TestCommand
66

7-
__version__ = '0.0.21'
7+
__version__ = '0.0.22'
88

99

1010
class PyTest(TestCommand):
@@ -48,6 +48,7 @@ def readme():
4848
'Programming Language :: Python :: 3.5',
4949
'Programming Language :: Python :: 3.6',
5050
'Programming Language :: Python :: 3.7',
51+
'Programming Language :: Python :: 3.8',
5152
"Intended Audience :: Developers",
5253
],
5354
keywords='validate CSV vampires',

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ basepython = python3.5
1515
[testenv:py36]
1616
basepython = python3.6
1717

18+
[testenv:py37]
19+
basepython = python3.7
20+
21+
[testenv:py38]
22+
basepython = python3.8
23+
1824
[testenv:lint]
1925
commands = black --check vladiate tests
2026
deps =

0 commit comments

Comments
 (0)