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 +)