From a691d0172fa9c219cd62f09b2346c3b7429c1564 Mon Sep 17 00:00:00 2001 From: mattsb42-aws Date: Wed, 1 Aug 2018 16:52:04 -0700 Subject: [PATCH 1/2] update gitignore to play well with PyCharm --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 993f84e..6540510 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,6 @@ docs/build .mypy_cache .hypothesis .pytest_cache + +# PyCharm +.idea/ \ No newline at end of file From f25373592f9cf8f9d6b3e0fbc4b67ace58666bb3 Mon Sep 17 00:00:00 2001 From: mattsb42-aws Date: Wed, 1 Aug 2018 16:52:29 -0700 Subject: [PATCH 2/2] remove hard requirement on 3.6 in favor of general 3 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7f59173..6881c3e 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,7 @@ envlist = # linters-tests :: Runs all linters over all tests. [testenv:default-python] -basepython = python3.6 +basepython = python3 [testenv:base-command] commands = pytest --basetemp={envtmpdir} -l --cov base64io {posargs}