From d06b7d0a76ca7cd0e4eeb4f5dff5cac0e454df94 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Mon, 30 May 2022 15:32:58 +1200 Subject: [PATCH] static version --- akauntingpy/api.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/akauntingpy/api.py b/akauntingpy/api.py index 114d3da..5797247 100644 --- a/akauntingpy/api.py +++ b/akauntingpy/api.py @@ -1,11 +1,10 @@ import requests from requests.auth import HTTPBasicAuth -from setuptools_scm import get_version from akauntingpy import exceptions from akauntingpy.helpers import * -__version__ = get_version(root='..', relative_to=__file__) +__version__ = "1.0.2" class Client(object):