Skip to content

Commit

Permalink
fix: downgrade requirements for py3.7 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoarine committed Jun 29, 2023
1 parent 5b1c53d commit 9cfe8de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[project]
name = "findlike"
version = "1.2.1"
version = "1.2.2"
authors = [{ name = "Bruno Arine", email = "[email protected]" }]
description = "findlike is a package to retrieve similar documents"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"nltk ~= 3.8",
"numpy ~= 1.24.0",
"scikit-learn ~= 1.2.0",
"numpy ~= 1.21.6",
"scikit-learn ~= 1.0.2",
"rank-bm25 ~= 0.2.2",
"stop-words ~= 2018.7.23"
]
Expand All @@ -40,6 +40,6 @@ dev = [
"twine ~= 4.0.2",
"pylint ~= 2.17.4",
"mypy ~= 1.4.0",
"flake8 ~= 6.0.0",
"flake8 ~= 5.0.4",
"pytest ~= 7.4.0",
]

0 comments on commit 9cfe8de

Please sign in to comment.