Skip to content

Commit

Permalink
installation: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lnielsen committed Oct 20, 2021
1 parent 9cd19b9 commit a8cd736
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion invenio_s3/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
#
# Invenio-S3 is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.

"""File serving helpers for S3 files."""

import mimetypes
import unicodedata

from flask import current_app
from invenio_files_rest.helpers import chunk_size_or_default, sanitize_mimetype
from invenio_files_rest.helpers import sanitize_mimetype
from werkzeug.datastructures import Headers
from werkzeug.urls import url_quote

Expand Down
2 changes: 1 addition & 1 deletion invenio_s3/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#
# Invenio-S3 is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.

"""S3 file storage interface."""
from __future__ import absolute_import, division, print_function

from functools import partial, wraps
from math import ceil
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

tests_require = [
'pytest-invenio>=1.4.2',
'invenio-base>=1.2.3',
'invenio-app>=1.2.3',
'invenio-base>=1.2.5',
'invenio-app>=1.3.1',
'invenio-db[all]>=1.0.9',
'moto>=1.3.7',
'redis>=2.10.5',
Expand All @@ -25,7 +25,7 @@
extras_require = {
'docs': [
'Sphinx>=3.0.1,<3.0.2',
],
],
'tests': tests_require,
}

Expand All @@ -39,7 +39,7 @@

install_requires = [
'boto3>=1.9.91,<=1.14.44',
'invenio-files-rest>=1.0.0',
'invenio-files-rest>=1.3.0',
's3fs>=0.3.0,<0.4.0',
]

Expand Down

0 comments on commit a8cd736

Please sign in to comment.