From 3ba8384481a50b230fecd61b6ea423b61f62a6b2 Mon Sep 17 00:00:00 2001 From: Omid <ohosseini@passcal.nmt.edu> Date: Tue, 3 Dec 2024 10:45:29 -0700 Subject: [PATCH] Update version to 2024 --- .gitignore | 3 +++ conda.recipe/meta.yaml | 2 +- refscrub/__init__.py | 2 +- refscrub/refscrub.py | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index f61ca3b..e4106db 100644 --- a/.gitignore +++ b/.gitignore @@ -105,3 +105,6 @@ ENV/ .idea/ .DS_Store + +# vscode +.vscode/ diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index e755e38..4abe001 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: refscrub - version: 2023.2.0.1 + version: 2024.2.0.1 source: path: ../ diff --git a/refscrub/__init__.py b/refscrub/__init__.py index a34e5f1..2049d79 100644 --- a/refscrub/__init__.py +++ b/refscrub/__init__.py @@ -4,4 +4,4 @@ __author__ = """IRIS PASSCAL""" __email__ = 'software-support@passcal.nmt.edu' -__version__ = '2023.2.0.1' +__version__ = '2024.2.0.1' diff --git a/refscrub/refscrub.py b/refscrub/refscrub.py index 14bfbf2..f9638ba 100644 --- a/refscrub/refscrub.py +++ b/refscrub/refscrub.py @@ -28,7 +28,7 @@ import struct import sys from os.path import basename, getsize, isfile -PROG_VERSION = '2023.2.0.1' +PROG_VERSION = '2024.2.0.1' VERBOSE = False EXTRACT = False SUMMARY_FILE = 'scrubsum.txt' diff --git a/setup.py b/setup.py index 2d5295f..ad99280 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,6 @@ setup( name='refscrub', packages=find_packages(include=['refscrub']), url='https://git.passcal.nmt.edu/software_public/passoft/refscrub', - version='2023.2.0.1', + version='2024.2.0.1', zip_safe=False, ) -- GitLab