Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LibMultiLabel is a library for binary, multi-class, and multi-label classificati
This is an on-going development so many improvements are still being made. Comments are very welcome.

## Environments
- Python: 3.7+
- Python: 3.8+
- CUDA: 11.6 (if training neural networks by GPU)
- Pytorch 1.13.1+

Expand Down
4 changes: 2 additions & 2 deletions docs/cli/ov_data_format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Install LibMultiLabel from Source

* Environment

* Python: 3.7+
* Python: 3.8+
* CUDA: 11.6 (if training neural networks by GPU)
* Pytorch 1.13.1+

Expand All @@ -37,7 +37,7 @@ and then create a virtual enviroment as follows.

.. code-block:: bash

conda create -n LibMultiLabel python=3.7
conda create -n LibMultiLabel python=3.8
conda activate LibMultiLabel

* Clone `LibMultiLabel <https://github.com/ASUS-AICS/LibMultiLabel>`_.
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8

[options]
Expand All @@ -39,7 +38,7 @@ install_requires =
scipy
transformers

python_requires = >=3.7
python_requires = >=3.8

[options.extras_require]
linear =
Expand Down