From 2f28a8ce645a4d5aec89d77ca409eb3aab70a56e Mon Sep 17 00:00:00 2001 From: Omid <ohosseini@passcal.nmt.edu> Date: Wed, 13 Nov 2024 13:49:01 -0700 Subject: [PATCH] Fix the build issue --- conda-recipe/meta.yaml | 3 ++- nexus/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 45a3a066..4ebacf82 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: nexus-passoft - version: "2023.4.6.2" + version: "2023.4.6.3" source: path: ../ @@ -17,6 +17,7 @@ requirements: build: - python >=3.9 - pip + - setuptools run: - python >=3.9 diff --git a/nexus/__init__.py b/nexus/__init__.py index a09e3895..73d1dbe3 100644 --- a/nexus/__init__.py +++ b/nexus/__init__.py @@ -4,4 +4,4 @@ __author__ = """IRIS PASSCAL""" __email__ = 'software-support@passcal.nmt.edu' -__version__ = '2023.4.6.2' +__version__ = '2023.4.6.3' diff --git a/setup.cfg b/setup.cfg index f47612e1..b84eb502 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2023.4.0.0 +current_version = 2023.4.6.3 commit = True tag = True diff --git a/setup.py b/setup.py index 6663c670..904b93a6 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,6 @@ setup( packages=find_packages(include=['nexus']), test_suite='tests', url='https://git.passcal.nmt.edu/software_public/passoft/nexus', - version='2023.4.6.2', + version='2023.4.6.3', zip_safe=False, ) -- GitLab