Skip to content

Commit

Permalink
Merge e7994c6 into 6511357
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwoerpel committed May 8, 2024
2 parents 6511357 + e7994c6 commit 5211197
Show file tree
Hide file tree
Showing 8 changed files with 313 additions and 349 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = True
tag = True
message = 🔖 Bump version: {current_version} → {new_version}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ htmlcov/
.tox/
.nox/
.coverage
coverage.lcov
.coverage.*
.cache
nosetests.xml
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ typecheck:
poetry run mypy --strict anystore

test:
poetry run pytest -v --capture=sys --cov=anystore --cov-report term-missing
poetry run pytest -v --capture=sys --cov=anystore --cov-report=lcov

build:
poetry run build
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.2
0.1.3
2 changes: 1 addition & 1 deletion anystore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
]


__version__ = "0.1.2"
__version__ = "0.1.3"
1 change: 1 addition & 0 deletions anystore/store/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def get_store(**kwargs) -> BaseStore:
if settings.json_uri is not None:
store = BaseStore.from_json_uri(settings.json_uri, **kwargs)
return get_store(**store.model_dump())
uri = settings.uri
uri = ensure_uri(uri)
parsed = urlparse(uri)
if parsed.scheme == "redis":
Expand Down
648 changes: 305 additions & 343 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "anystore"
version = "0.1.2"
version = "0.1.3"
description = "Store and cache things anywhere"
authors = ["Simon Wörpel <simon.woerpel@pm.me>"]
license = "GPL-3.0"
Expand Down Expand Up @@ -36,7 +36,7 @@ sqlalchemy = "^2.0.28"
redis = "^5.0.2"
fakeredis = "^2.21.1"
typer = ">=0.9,<0.13"
pyaml = "^23.12.0"
pyaml = ">=23.12,<25.0"
cloudpickle = "^3.0.0"
pydantic-settings = "^2.2.1"
rich = "^13.7.0"
Expand Down

0 comments on commit 5211197

Please sign in to comment.