File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed
Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
397398License
398399------ -
Original file line number Diff line number Diff line change 44from setuptools import setup , find_packages
55from setuptools .command .test import test as TestCommand
66
7- __version__ = '0.0.21 '
7+ __version__ = '0.0.22 '
88
99
1010class 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' ,
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ basepython = python3.5
1515[testenv:py36]
1616basepython = python3.6
1717
18+ [testenv:py37]
19+ basepython = python3.7
20+
21+ [testenv:py38]
22+ basepython = python3.8
23+
1824[testenv:lint]
1925commands = black --check vladiate tests
2026deps =
You can’t perform that action at this time.
0 commit comments