diff --git a/CHANGES b/CHANGES index 51586e2..85ef550 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -0.4.0 +0.4.0 (2023-09-21) ================== * Adjust S3Upload.file_dom_selector to allow for any DOM selector rather than just an ID. diff --git a/setup.py b/setup.py index 04bef55..31abd11 100644 --- a/setup.py +++ b/setup.py @@ -11,20 +11,19 @@ setup( name="django-s3sign", - version="0.3.3", + version="0.4.0", author="Anders Pearson", author_email="ctl-dev@columbia.edu", url="https://github.com/ccnmtl/django-s3sign", description="Django view for AWS S3 signing", long_description=long_description, long_description_content_type='text/markdown', - install_requires=['Django>=3.2', 'nose', 'boto3', 'botocore'], + install_requires=['Django>=3.2', 'boto3', 'botocore'], scripts=[], license="GPL3", platforms=["any"], zip_safe=False, package_data={'': ['*.*']}, packages=['s3sign'], - test_suite='nose.collector', include_package_data=True, )