rapidsai / asvdb

Apache License 2.0
9 stars 4 forks source link

Fix conda recipe #8

Closed ajschmidt8 closed 4 years ago

ajschmidt8 commented 4 years ago

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.