Skip to content

Commit 07b5d3c

Browse files
committed
ruTS 0.7.0
1 parent b4bb510 commit 07b5d3c

File tree

4 files changed

+23
-24
lines changed

4 files changed

+23
-24
lines changed

Pipfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ name = "pypi"
77
nltk = "*"
88
pymorphy2 = "*"
99
razdel = "*"
10-
scipy = "==1.6.3"
11-
spacy = "==3.0.6"
12-
matplotlib = "==3.4.2"
13-
numpy = "==1.20.3"
10+
scipy = ">=1.6.0"
11+
spacy = ">=3.0.0"
12+
matplotlib = ">=3.3.0"
13+
numpy = ">=1.20.0"
1414
pandas = "*"
1515
graphviz = "*"
1616

Pipfile.lock

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* `pymorphy2`
1212
* `razdel`
1313
* `scipy`
14-
* `spacy` - 3.0.6 и выше
14+
* `spacy` - 3.0.0 и выше
1515
* `numpy`
1616
* `pandas`
1717
* `matplotlib`

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
README = f.read()
1313

1414
INSTALL_REQUIRES = [
15-
"scipy==1.6.3",
15+
"scipy>=1.6.0",
1616
"nltk",
1717
"pymorphy2",
1818
"razdel",
19-
"spacy==3.0.6",
20-
"matplotlib==3.4.2",
21-
"numpy==1.20.3",
19+
"spacy>=3.0.0",
20+
"matplotlib>=3.3.0",
21+
"numpy>=1.20.0",
2222
"pandas",
23-
"graphviz"
23+
"graphviz",
2424
]
2525

2626
setup(
@@ -43,7 +43,7 @@
4343
author="Шкарин Сергей, Смирнова Екатерина",
4444
author_email="kouki.sergey@gmail.com, ekanerina@yandex.ru",
4545
url="https://github.com/SergeyShk/ruTS",
46-
download_url="https://github.com/SergeyShk/ruTS/archive/0.6.0.tar.gz",
46+
download_url="https://github.com/SergeyShk/ruTS/archive/0.7.0.tar.gz",
4747
packages=find_packages(exclude=("tests.*", "tests", "docs")),
4848
python_requires=">=3.7",
4949
classifiers=(

0 commit comments

Comments
 (0)