dazza-codes / aio-aws

Asyncio utils for AWS Services
Apache License 2.0
3 stars 1 forks source link

Add `aio_aws.__version__` #79

Closed dazza-codes closed 2 years ago

dazza-codes commented 2 years ago

Supplement aio_aws.VERSION with aio_aws.__version__ since most python libs support that, e.g.

    versions = {
        "s3fs": s3fs.__version__,
        "aio_aws": aio_aws.VERSION,
        "aiobotocore": aiobotocore.__version__,
        "boto3": boto3.__version__,
        "botocore": botocore.__version__,
        "jmespath": jmespath.__version__,
        "dateutil": dateutil.__version__,
        "s3transfer": s3transfer.__version__,
        "six": six.__version__,
        "urllib3": urllib3.__version__,
    }
dazza-codes commented 2 years ago

Fixed by #80