Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
..
Copyright (C) 2018, 2019, 2020 Esteban J. G. Gabancho.
Copyright (C) 2024 Graz University of Technology.
Copyright (C) 2024-2026 Graz University of Technology.
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.

Changes
=======

Version v4.0.0 (released 2026-01-29)

- chore(setup): bump dependencies

Version 3.0.2 (released 2025-08-04)

- multipart: fix handling of multipart uploads with >1000 parts
Expand Down
4 changes: 2 additions & 2 deletions invenio_s3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Copyright (C) 2018, 2019, 2020 Esteban J. G. Gabancho.
# Copyright (C) 2024 KTH Royal Institute of Technology.
# Copyright (C) 2024 Graz University of Technology.
# Copyright (C) 2024-2026 Graz University of Technology.
#
# 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.
Expand Down Expand Up @@ -46,7 +46,7 @@
from .ext import InvenioS3
from .storage import S3FSFileStorage, s3fs_storage_factory

__version__ = "3.0.2"
__version__ = "4.0.0"

__all__ = (
"__version__",
Expand Down
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2018 Esteban J. G. Gabancho.
# Copyright (C) 2022-2024 Graz University of Technology.
# Copyright (C) 2022-2026 Graz University of Technology.
# Copyright (C) 2024 KTH Royal Institute of Technology.
#
# Invenio-S3 is free software; you can redistribute it and/or modify it
Expand All @@ -27,17 +27,17 @@ packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
invenio-files-rest>=3.0.0,<4.0.0
invenio-files-rest>=4.0.0,<5.0.0
s3fs>=2025.3.2
aiobotocore>=2.5.4,<3.0.0

[options.extras_require]
tests =
pytest-black-ng>=0.4.0
pytest-invenio>=3.0.0,<4.0.0
pytest-black>=0.6.0
pytest-invenio>=4.0.0,<5.0.0
invenio-base>=2.0.0,<3.0.0
invenio-app>=2.0.0,<3.0.0
invenio-db>=2.0.0,<3.0.0
invenio-app>=3.0.0,<4.0.0
invenio-db>=2.2.0,<3.0.0
Sphinx>=4.2.0

[options.entry_points]
Expand Down Expand Up @@ -68,4 +68,4 @@ ignore =
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_s3 --cov-report=term-missing
testpaths = tests invenio_s3
markers =
manual: Mark test as manual, not to be run by default.
manual: Mark test as manual, not to be run by default.
Loading