Merge pull request #121 from ain-soph/patch-1

remove numpy version requirements
This commit is contained in:
D-X-Y 2022-03-25 00:05:53 -07:00 committed by GitHub
commit b557a22928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ jobs:
- name: Install XAutoDL from source
run: |
python setup.py install
pip install .
- name: Test Search Space
run: |

View File

@ -26,7 +26,7 @@ jobs:
- name: Install XAutoDL from source
run: |
python setup.py install
pip install .
- name: Test Xmisc
run: |

View File

@ -26,7 +26,7 @@ jobs:
- name: Install XAutoDL from source
run: |
python setup.py install
pip install .
- name: Test Super Model
run: |

View File

@ -89,7 +89,7 @@ At this moment, this project provides the following algorithms and scripts to ru
## Requirements and Preparation
**First of all**, please use `python setup.py install` to install `xautodl` library.
**First of all**, please use `pip install .` to install `xautodl` library.
Please install `Python>=3.6` and `PyTorch>=1.5.0`. (You could use lower versions of Python and PyTorch, but may have bugs).
Some visualization codes may require `opencv`.

View File

@ -37,7 +37,7 @@ def read(fname="README.md"):
# What packages are required for this module to be executed?
REQUIRED = ["numpy>=1.16.5,<=1.19.5", "pyyaml>=5.0.0", "fvcore"]
REQUIRED = ["numpy>=1.16.5", "pyyaml>=5.0.0", "fvcore"]
packages = find_packages(
exclude=("tests", "scripts", "scripts-search", "lib*", "exps*")