Skip to content

Commit

Permalink
fix sklearn install problem
Browse files Browse the repository at this point in the history
  • Loading branch information
taishi-i committed Jul 31, 2023
1 parent 78cc9d5 commit 88c5727
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -28,12 +28,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _long_description():
'toiro.classifiers'
],
install_requires=[
'requests', 'tqdm', 'pandas', 'sklearn', 'py-cpuinfo', 'janome'
'requests', 'tqdm', 'pandas', 'scikit-learn', 'py-cpuinfo', 'janome'
],
extras_require={
'all_tokenizers': extras_requires_tokenizers,
Expand Down

0 comments on commit 88c5727

Please sign in to comment.