diff --git a/dev-requirements.txt b/dev-requirements.txt index c0d82b8..9b1cba5 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,9 +1,9 @@ -autopep8==1.5.4 -pycodestyle==2.6.0 -pylint==2.6.0 -python-Levenshtein==0.12.0 -setuptools==50.3.0 -wheel==0.35.1 -twine==3.2.0 -pdoc3==0.9.1 -statsmodels==0.12.1 \ No newline at end of file +autopep8==2.0.4 +pycodestyle==2.11.0 +pylint==3.0.3 +python-Levenshtein==0.25.0 +setuptools==69.1.0 +wheel==0.42.0 +twine==5.0.0 +pdoc3==0.10.0 +statsmodels==0.14.1 \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index a349b33..acc4880 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -python-Levenshtein==0.12.0 -statsmodels==0.12.1 \ No newline at end of file +python-Levenshtein==0.25.0 +statsmodels==0.14.1 \ No newline at end of file diff --git a/setup.py b/setup.py index 0787179..60282f8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="wuggy", - version="0.0.1", + version="1.1.0", author="Emmanuel Keuleers", author_email="E.A.Keuleers@tilburguniversity.edu", description="Wuggy: A multilingual pseudoword generator", @@ -22,5 +22,5 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires=">=3.6", + python_requires=">=3.8", ) diff --git a/wuggy/generators/wuggygenerator.py b/wuggy/generators/wuggygenerator.py index 757e41d..9055302 100644 --- a/wuggy/generators/wuggygenerator.py +++ b/wuggy/generators/wuggygenerator.py @@ -66,7 +66,7 @@ def __init__(self): "phonetic_english_cmu", "phonetic_french", "phonetic_italian"] - self.__official_language_plugin_repository_url = "https://raw.githubusercontent.com/WuggyCode/wuggy_language_plugin_data/master/" + self.__official_language_plugin_repository_url = "https://raw.githubusercontent.com/WuggyCode/wuggy_language_plugin_data/master" self.attribute_subchain = None self.frequency_subchain = None self.reference_sequence = None @@ -182,8 +182,9 @@ def download_language_plugin( print( f"Wuggy is currently downloading the plugin {language_plugin_name} for you from the official repository...") - + py_file_name = f"{language_plugin_name}.py" + print(f"{self.__official_language_plugin_repository_url}/{language_plugin_name}/{py_file_name}") py_file = urlopen( f"{self.__official_language_plugin_repository_url}/{language_plugin_name}/{py_file_name}")