From 757fa67f8f2c24dfe0d4c784ac5cc81f9fa92a75 Mon Sep 17 00:00:00 2001 From: 88lex Date: Wed, 5 Aug 2020 23:33:40 +0800 Subject: [PATCH] update sleep --- pyproject.toml | 2 +- safire/__init__.py | 2 +- safire/safire.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9e7bb3e..0637787 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "safire" -version = "0.1.9" +version = "0.2.0" description = "A flexible tool to create and delete Google / GSuite service accounts to be used with shared drives." authors = ["88lex"] keywords = ["gsuite", "sas", "service accounts"] diff --git a/safire/__init__.py b/safire/__init__.py index c11f861..d3ec452 100644 --- a/safire/__init__.py +++ b/safire/__init__.py @@ -1 +1 @@ -__version__ = "0.1.9" +__version__ = "0.2.0" diff --git a/safire/safire.py b/safire/safire.py index 37e11d9..8eed509 100755 --- a/safire/safire.py +++ b/safire/safire.py @@ -40,7 +40,7 @@ class Commands: Most commands accept a 'filter'to process subsets. If no filter all items are listed.""" def __init__(self): - Init() + # Init() self.list = List() self.add = Add() self.remove = Remove() diff --git a/setup.py b/setup.py index c2ecad9..d7e2f22 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ if os.path.exists(readme_path): setup( long_description=readme, name='safire', - version='0.1.9', + version='0.2.0', description='A flexible tool to create and delete Google / GSuite service accounts to be used with shared drives.', python_requires='==3.*,>=3.6.1', author='88lex',