diff --git a/.gitignore b/.gitignore index 1ff7a5d0..da838999 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Byte-compiled / optimized / DLL files __pycache__/ +.pytest_cache/ *.py[cod] *$py.class diff --git a/setup.py b/setup.py index f7e4b953..94a27d7d 100644 --- a/setup.py +++ b/setup.py @@ -39,12 +39,12 @@ packages=find_packages(), install_requires=[ 'docopt==0.6.2', - 'coverage==4.4.2', - 'pylint==1.8.1', - 'pytest==3.2.3', + 'coverage==4.5.1', + 'pylint==1.8.2', + 'pytest==3.4.0', 'PyYAML==3.12', 'mysqlclient==1.3.12', - 'sql_metadata==1.0.2', + 'sql_metadata==1.1.2', 'termcolor==1.1.0', 'yamlordereddictloader==0.4.0' ],