Skip to content

Commit

Permalink
Merge pull request #68 from findsimilar/anaconda_loading
Browse files Browse the repository at this point in the history
fix requirements
  • Loading branch information
quillcraftsman authored Nov 12, 2023
2 parents 9d07adf + 1bf5ebc commit 932753f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-conda.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Conde
name: Publish Conda

on:
release:
Expand Down
6 changes: 3 additions & 3 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 8 additions & 0 deletions docs/package/find_similar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------------------

Expand Down
2 changes: 1 addition & 1 deletion find_similar/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
Package info
"""
name = 'find-similar'
version = '2.0.0'
version = '2.0.1'
status = '4 - Beta'
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 932753f

Please sign in to comment.