From e2aebfcc787d51a42cb8c919455c7f2df973193e Mon Sep 17 00:00:00 2001 From: knc6 Date: Wed, 20 Mar 2024 03:11:18 -0400 Subject: [PATCH] Minor lint fix. --- jarvis/__init__.py | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/jarvis/__init__.py b/jarvis/__init__.py index 32de38a1..080f8b4f 100644 --- a/jarvis/__init__.py +++ b/jarvis/__init__.py @@ -1,4 +1,5 @@ """Version number.""" + __version__ = "2024.3.4" import os @@ -9,4 +10,4 @@ def test(*args): import pytest path = os.path.join(os.path.split(__file__)[0], "tests") - pytest.main(args=[path] + list(args)) \ No newline at end of file + pytest.main(args=[path] + list(args)) diff --git a/setup.py b/setup.py index 28366161..5817fb5c 100644 --- a/setup.py +++ b/setup.py @@ -83,4 +83,4 @@ "Topic :: Scientific/Engineering", ], # scripts=glob.glob(os.path.join(JARVIS_DIR, "*")) -) \ No newline at end of file +)