Since asvdb recently imported the 3rd party packages boto3 and botocore, our conda recipe's load_setup_py_data function was failing since setup.py imported asvdb, which in turn imported boto3 and botocore. This caused a build error since boto3 and botocore weren't installed on the system.
This PR fixes that issue by moving the package version from asvdb/__init__.py to setup.py.
Additionally, it removes the duplicated runtime dependencies from the requirements section and makes some small changes to the build package name.
Since
asvdb
recently imported the 3rd party packagesboto3
andbotocore
, our conda recipe'sload_setup_py_data
function was failing sincesetup.py
importedasvdb
, which in turn importedboto3
andbotocore
. This caused a build error sinceboto3
andbotocore
weren't installed on the system.This PR fixes that issue by moving the package version from
asvdb/__init__.py
tosetup.py
.Additionally, it removes the duplicated runtime dependencies from the requirements section and makes some small changes to the build package name.