diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b484bdc..4c77039 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,6 +18,7 @@ jobs: run: | python -m pip install --upgrade pip pip install .[test,ui] + pip install git+https://github.com/steppi/adeft.git@modernize python -c "import nltk; nltk.download('punkt'); nltk.download('stopwords')" python -m adeft.download - name: Tests diff --git a/gilda/__init__.py b/gilda/__init__.py index 6841dd0..e9c8072 100644 --- a/gilda/__init__.py +++ b/gilda/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.2.0' +__version__ = '1.2.1' import logging diff --git a/setup.py b/setup.py index 5cf43d9..9ef917e 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ 'Programming Language :: Python :: 3.11', ], packages=find_packages(), - install_requires=['regex', 'adeft>=0.11.0', 'boto3', 'flask>=3.0,<4.0', + install_requires=['regex', 'boto3', 'flask>=3.0,<4.0', 'flask-restx>=1.3.0', 'pystow>=0.1.10', 'unidecode', 'importlib_metadata; python_version < "3.8"', 'werkzeug'],