Skip to content

Commit

Permalink
Version 0.0.22 (#69)
Browse files Browse the repository at this point in the history
* Add new contributor

* Add Python 3.8 support

* Version 0.0.22
  • Loading branch information
di authored Nov 12, 2019
1 parent f5d5c26 commit fd00323
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ matrix:
- python: 3.7
dist: xenial
env: TOXENV=py37
- python: 3.7
- python: 3.8
dist: xenial
env: TOXENV=py38
- python: 3.8
dist: xenial
env: TOXENV=lint

Expand Down
5 changes: 3 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -386,13 +386,14 @@ Command Line Arguments
attempt to use this number of processes, Default: 1
-q, --quiet disable console log output generated by validations
Authors
-------
Contributors
------------
- `Dustin Ingram <https://github.com/di>`__
- `Clara Bennett <https://github.com/csojinb>`__
- `Aditya Natraj <https://github.com/adityanatra>`__
- `Sterling Petersen <https://github.com/sterlingpetersen>`__
- `Aleix <https://github.com/maleix>`__
License
-------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

__version__ = '0.0.21'
__version__ = '0.0.22'


class PyTest(TestCommand):
Expand Down Expand Up @@ -48,6 +48,7 @@ def readme():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Intended Audience :: Developers",
],
keywords='validate CSV vampires',
Expand Down
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ basepython = python3.5
[testenv:py36]
basepython = python3.6

[testenv:py37]
basepython = python3.7

[testenv:py38]
basepython = python3.8

[testenv:lint]
commands = black --check vladiate tests
deps =
Expand Down

0 comments on commit fd00323

Please sign in to comment.