Skip to content

Commit

Permalink
Remove support for python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekram committed Nov 1, 2020
1 parent 29a84d8 commit 06b5eab
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
dist: xenial
language: python
python:
- '3.6'
- '3.7'
- '3.8'
install:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ max_line_length = 100
format = pep8
skip = venv/*,.tox/*,*/tests/*,setup.py
linters= pycodestyle,pyflakes,pylint,pep8
ignore = D203,D212,E231,C0330,R0912,R0914,W1202,R1702
ignore = D203,D212,E231,C0330,R0912,R0914,W1202,R1702,C0114
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"pytest==6.1.2",
"pytest-cov==2.8.1",
"coverage==5.0.4",
"pylava-pylint==0.0.3",
"pylint==2.4.4",
"pylava-pylint==0.0.3",
"black==20.8b1",
"pytest-black==0.3.12",
]
Expand All @@ -35,7 +35,6 @@
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Security :: Cryptography",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py36, py37, py38
envlist = py37, py38

[testenv]
commands = {envpython} setup.py test
Expand Down

0 comments on commit 06b5eab

Please sign in to comment.