Skip to content

Commit

Permalink
Add missing dependency and increase version.
Browse files Browse the repository at this point in the history
  • Loading branch information
doctorink committed Jan 9, 2024
1 parent 180e3ea commit a317dc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion knowledge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
__maintainer__ = ["Markus Weber"]
__email__ = "[email protected]"
__status__ = "beta"
__version__ = "2.0.0"
__version__ = "2.0.1"

# Create the Logger
logger: Union[logging.Logger, None] = None
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# The directory containing this file
HERE = pathlib.Path(__file__).parent
__version__ = "2.0.0"
__version__ = "2.0.1"

# The text of the README file
README = (HERE / "README.md").read_text()
Expand Down Expand Up @@ -54,7 +54,8 @@
"rdflib>=6.3.2",
"python-dateutil",
"aiohttp[speedups]>3.8.6",
"orjson>=3.8.0"
"orjson>=3.8.0",
"cachetools==5.3.2"
],
extras_require={
},
Expand Down

0 comments on commit a317dc4

Please sign in to comment.