From e65a9b2e1acc3e2ba982e596cff3857620a3838f Mon Sep 17 00:00:00 2001 From: lens0021 Date: Tue, 13 Apr 2021 08:12:14 +0900 Subject: [PATCH] Release bug fix --- CHANGELOG.md | 4 ++++ setup.py | 2 +- src/legunto/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b0b065..a65740e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Versions and bullets are arranged chronologically from latest to oldest. +## v1.0.1 + +- Fix "TypeError: upgrade_dependencies() got an unexpected keyword argument" + ## v1.0.0 - Percent encode page titles. diff --git a/setup.py b/setup.py index e18f909..1478205 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="legunto", - version="1.0.0", + version="1.0.1", description="Fetch MediaWiki Scribunto modules from wikis", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/legunto/__init__.py b/src/legunto/__init__.py index 12474e4..33ad4a8 100644 --- a/src/legunto/__init__.py +++ b/src/legunto/__init__.py @@ -152,7 +152,7 @@ def install_dependencies() -> None: print("'scribunto.lock' file already exists.") print("Trying to upgrade...") upgrade_dependencies( - scribunto=SCRIBUNTO_FILE_PATH, lock=LOCK_FILE_PATH) + scribunto_path=SCRIBUNTO_FILE_PATH, lock_path=LOCK_FILE_PATH) return dependencies = json.loads(open(SCRIBUNTO_FILE_PATH, "r").read())[