Skip to content

Commit

Permalink
Release 2023.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ungarj committed Dec 7, 2023
1 parent fc28048 commit 25358da
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ Changelog
#########


----------------------
2023.12.1 - 2023-12-07
----------------------

* packaging

* fix `aiobotocore` versions for `s3` extra


----------------------
2023.12.0 - 2023-12-05
----------------------
Expand Down
2 changes: 1 addition & 1 deletion mapchete/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"Executor",
"MFuture",
]
__version__ = "2023.12.0"
__version__ = "2023.12.1"

logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())
Expand Down
2 changes: 1 addition & 1 deletion mapchete/config/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ def initialize_inputs(
logger.exception(e)
raise MapcheteDriverError("error when loading input %s: %s" % (v, e))
logger.debug("input reader for abstract input %s is %s", v, reader)
else:
else: # pragma: no cover
raise MapcheteConfigError("invalid input type %s", type(v))
# trigger bbox creation
reader.bbox(out_crs=pyramid.crs)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ profiling = [
"tilebench"
]
s3 = [
"aiobotocore>=1.1.2,!=2.7.0,!=2.8.0",
"aiobotocore>=1.1.2",
"boto3>=1.14.44",
"fsspec[s3]",
"s3fs!=2023.9.0",
Expand Down

0 comments on commit 25358da

Please sign in to comment.