From 215a2d67c041d668c44540195b8d5f7ea908d594 Mon Sep 17 00:00:00 2001 From: dsgnr Date: Tue, 6 Jul 2021 19:13:42 +0100 Subject: [PATCH] Bump version --- .pylintrc | 3 ++- postfixbuddy.py | 8 ++++---- requirements.txt | 7 ++++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.pylintrc b/.pylintrc index 6b2ea7b..9e0a288 100644 --- a/.pylintrc +++ b/.pylintrc @@ -62,7 +62,8 @@ disable=missing-docstring, pointless-statement, too-many-return-statements, unused-import, - unused-variable + unused-variable, + consider-using-with # Enable the message, report, category or checker with the given id(s). You can diff --git a/postfixbuddy.py b/postfixbuddy.py index 527e992..06246bc 100755 --- a/postfixbuddy.py +++ b/postfixbuddy.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# postfixbuddy.py created by Daniel Hand (daniel.hand@rackspace.co.uk) +# postfixbuddy.py created by Daniel Hand (email@danielhand.io) # This is a recreation of pfHandle.perl but in Python. from __future__ import absolute_import, division, print_function @@ -7,13 +7,13 @@ # Standard Library import argparse import os -from os.path import join -import sys import subprocess +import sys +from os.path import join from subprocess import call -__version__ = '0.2.0' +__version__ = '0.3.0' def get_options(): diff --git a/requirements.txt b/requirements.txt index 9960e07..e30f77a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ -pylint==1.8.1 -pycodestyle==2.5.0 -pytest==3.2.3 +pylint==2.9.3 +pycodestyle==2.7.0 +pytest==6.2.4 +isort==5.9.1