From 8eab4b53352ba5385d270385f38bd7eab475e34b Mon Sep 17 00:00:00 2001 From: quillcraftsman Date: Sun, 12 Nov 2023 12:35:46 +0400 Subject: [PATCH 1/2] fix requirements --- .github/workflows/publish-conda.yml | 2 +- conda/meta.yaml | 6 +++--- requirements.txt | 2 -- setup.py | 1 - 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-conda.yml b/.github/workflows/publish-conda.yml index b3ee6f9..6a1ad69 100644 --- a/.github/workflows/publish-conda.yml +++ b/.github/workflows/publish-conda.yml @@ -1,4 +1,4 @@ -name: Publish Conde +name: Publish Conda on: release: diff --git a/conda/meta.yaml b/conda/meta.yaml index 211773e..5a0ecaa 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -19,12 +19,12 @@ requirements: - pip - python >=3.10 run: + - python >=3.10 - nltk ==3.8.1 - pydantic ==2.4.2 - - pymorphy3 ==1.2.1 - - python >=3.10 - pyyaml ==6.0.1 - - setuptools + - pymorphy3 + test: imports: diff --git a/requirements.txt b/requirements.txt index 7c9603a..4ee2000 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,5 @@ setuptools==68.2.2 nltk==3.8.1 pymorphy3==1.2.1 -pydantic==2.4.2 PyYAML==6.0.1 pandas==2.1.2 -SQLAlchemy==2.0.22 diff --git a/setup.py b/setup.py index b291c46..7d856f1 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,6 @@ def get_value_from_package_info(line, value, old_value): 'setuptools', 'nltk == 3.8.1', 'pymorphy3 == 1.2.1', - 'pydantic == 2.4.2', 'PyYAML == 6.0.1', ], python_requires=">=3", From 1bf5ebc4779117d14b544575ef723aa740f3556a Mon Sep 17 00:00:00 2001 From: quillcraftsman Date: Sun, 12 Nov 2023 12:40:50 +0400 Subject: [PATCH 2/2] change package version --- docs/package/find_similar.rst | 8 ++++++++ find_similar/package.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/package/find_similar.rst b/docs/package/find_similar.rst index ce1ce66..eed9eeb 100644 --- a/docs/package/find_similar.rst +++ b/docs/package/find_similar.rst @@ -36,6 +36,14 @@ find\_similar.core module :undoc-members: :show-inheritance: +find\_similar.package module +---------------------------- + +.. automodule:: find_similar.package + :members: + :undoc-members: + :show-inheritance: + find\_similar.tokenize module ----------------------------- diff --git a/find_similar/package.py b/find_similar/package.py index 906fd2f..d4b0eed 100644 --- a/find_similar/package.py +++ b/find_similar/package.py @@ -2,5 +2,5 @@ Package info """ name = 'find-similar' -version = '2.0.0' +version = '2.0.1' status = '4 - Beta'