From 16fbc13c9c47cdeac0521e46ca9dcf4cb039d7e7 Mon Sep 17 00:00:00 2001 From: Omid <ohosseini@passcal.nmt.edu> Date: Mon, 2 Dec 2024 17:08:23 -0700 Subject: [PATCH] Fix build issue and update the version --- .gitignore | 3 +++ conda.recipe/meta.yaml | 2 +- data2passcal/__init__.py | 2 +- data2passcal/data2passcal.py | 2 +- setup.py | 2 +- tests/test_data2passcal.py | 2 +- 6 files changed, 8 insertions(+), 5 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 8f4e509..cb6962c 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: data2passcal - version: 2023.2.0.1 + version: 2024.2.0.1 source: path: ../ diff --git a/data2passcal/__init__.py b/data2passcal/__init__.py index c98f14b..795b000 100644 --- a/data2passcal/__init__.py +++ b/data2passcal/__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/data2passcal/data2passcal.py b/data2passcal/data2passcal.py index 890eccf..22d5135 100644 --- a/data2passcal/data2passcal.py +++ b/data2passcal/data2passcal.py @@ -34,7 +34,7 @@ try: except ImportError: from urllib2 import urlopen -VERSION = '2023.2.0.1' +VERSION = '2024.2.0.1' # FTP related diff --git a/setup.py b/setup.py index 965ae2c..24cc644 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,6 @@ setup( name='data2passcal', packages=find_packages(include=['data2passcal']), url='https://git.passcal.nmt.edu/software_public/passoft/data2passcal', - version='2023.2.0.1', + version='2024.2.0.1', zip_safe=False, ) diff --git a/tests/test_data2passcal.py b/tests/test_data2passcal.py index 25ec58f..de2ceb2 100644 --- a/tests/test_data2passcal.py +++ b/tests/test_data2passcal.py @@ -16,7 +16,7 @@ if sys.version_info < (3, 3): else: from unittest.mock import patch -VERSION = '2023.2.0.0' +VERSION = '2024.2.0.1' SEND4REAL = os.environ.get('SEND4REAL', 'False') print("SEND4REAL=False by default. If one wants to test sending data to " -- GitLab