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",