Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • software_public/passoft/data2passcal
1 result
Show changes
Commits on Source (2)
......@@ -105,3 +105,6 @@ ENV/
.idea/
.DS_Store
# vscode
.vscode/
package:
name: data2passcal
version: 2023.2.0.0
version: 2024.2.0.1
source:
path: ../
......@@ -13,6 +13,7 @@ requirements:
build:
- python >=3.9
- pip
- setuptools
run:
- python >=3.9
......
......@@ -4,4 +4,4 @@
__author__ = """IRIS PASSCAL"""
__email__ = 'software-support@passcal.nmt.edu'
__version__ = '2023.2.0.0'
__version__ = '2024.2.0.1'
......@@ -34,7 +34,7 @@ try:
except ImportError:
from urllib2 import urlopen
VERSION = '2023.2.0.0'
VERSION = '2024.2.0.1'
# FTP related
......
......@@ -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.0',
version='2024.2.0.1',
zip_safe=False,
)
......@@ -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 "
......