From 9cc16fbc42db347092d9cb3d97ee1f2c0231f0e7 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Skutnik Date: Thu, 9 Feb 2023 09:56:58 -0800 Subject: [PATCH] Housekeeping; fix version and pylint config --- e4s_cl/version.py | 2 +- pylintrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e4s_cl/version.py b/e4s_cl/version.py index 2e59feb4..74f543fb 100644 --- a/e4s_cl/version.py +++ b/e4s_cl/version.py @@ -1,5 +1,5 @@ PACKAGE = "e4s_cl" -VERSION = (1, 0, 1) +VERSION = (1, 0, 2) RELEASE_CANDIDATE = 0 __version__ = '.'.join(map( str, VERSION)) + (f"rc{RELEASE_CANDIDATE}" if RELEASE_CANDIDATE else '') diff --git a/pylintrc b/pylintrc index 766ead45..7eb69683 100644 --- a/pylintrc +++ b/pylintrc @@ -378,4 +378,4 @@ exclude-protected=_asdict,_fields,_replace,_source,_make # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=Exception +#overgeneral-exceptions=Exception