Skip to content

Commit

Permalink
Merge pull request #52 from dimitrismistriotis/bump_upgrade_scikit_to…
Browse files Browse the repository at this point in the history
…_1_5_2

Upgrade scikit to 1 5 2
  • Loading branch information
dimitrismistriotis authored Sep 19, 2024
2 parents adc8be8 + c98da5d commit 8fc7b6c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 1.5.2

- scikit-learn to 1.5.2
- numpy to 2.1.1
- joblib to 1.4.2

## Version 1.5.1

- scikit-learn to 1.5.1
Expand Down
6 changes: 3 additions & 3 deletions development_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
#
-r requirements.txt

pytest==8.2.1
pylint==3.2.2
black==24.4.2
pytest==8.3.3
pylint==3.2.5
black==24.8.0
Binary file modified profanity_check/data/model.joblib
Binary file not shown.
Binary file modified profanity_check/data/vectorizer.joblib
Binary file not shown.
12 changes: 5 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
joblib==1.4.2
numpy==1.24.4; python_version <= '3.8'
numpy==1.26.4; python_version >= '3.9'
numpy==2.0.2; python_version < '3.10'
numpy==2.1.1; python_version >= '3.10'
# Used for the training script:
pandas==2.0.3; python_version < '3.8'
pandas==2.2.2; python_version >= '3.9'
scikit-learn==1.3.2; python_version <= '3.8'
scikit-learn==1.5.1; python_version >= '3.9'
scipy==1.13.1; python_version >= '3.10'
pandas==2.2.2
scikit-learn==1.5.2
scipy==1.14.1; python_version >= '3.10'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="alt-profanity-check",
version="1.5.1",
version="1.5.2",
author="Victor Zhou (original author), Menelaos Kotoglou, Dimitrios Mistriotis",
author_email="[email protected]",
description=(
Expand All @@ -18,7 +18,7 @@
long_description_content_type="text/markdown",
url="https://github.com/dimitrismistriotis/alt-profanity-check",
packages=setuptools.find_packages(),
install_requires=["scikit-learn==1.5.1", "joblib>=1.4.0"],
install_requires=["scikit-learn==1.5.2", "joblib>=1.4.2"],
python_requires=">=3.9",
package_data={"profanity_check": ["data/model.joblib", "data/vectorizer.joblib"]},
classifiers=[
Expand Down

0 comments on commit 8fc7b6c

Please sign in to comment.