File tree Expand file tree Collapse file tree 10 files changed +21
-6
lines changed Expand file tree Collapse file tree 10 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 2626 default : true
2727 - name : Install Python packages
2828 run : |
29- pip install numpy==1.22
30- pip install maturin
29+ pip install -r ./requirements/bench.txt
3130 - name : Build ulist
3231 run : |
3332 maturin build --release --out dist -m ulist/Cargo.toml -i python
Original file line number Diff line number Diff line change 2727 conda create -n py38 python=3.8
2828 eval "$(conda shell.bash hook)"
2929 conda activate py38
30- pip install mypy pytest flake8 maturin pytest- cov
30+ pip install -r ./requirements/ cov.txt
3131 - name : Build and install ulist
3232 run : |
3333 eval "$(conda shell.bash hook)"
Original file line number Diff line number Diff line change 3232 default : true
3333 - name : Install Python packages
3434 run : |
35- pip install mypy pytest flake8 maturin
35+ pip install -r ./requirements/dev.txt
3636 - name : Build ulist
3737 run : |
3838 maturin build --out dist -m ulist/Cargo.toml
Original file line number Diff line number Diff line change 2929 default : true
3030 - name : Install Python packages
3131 run : |
32- pip install maturin
32+ pip install -r ./requirements/common.txt
3333 - name : Publish ulist
3434 env :
3535 PYPI_PW : ${{ secrets.PYPI_PW }}
Original file line number Diff line number Diff line change 2727 default : true
2828 - name : Install Python packages
2929 run : |
30- pip install maturin sphinx
30+ pip install -r ./requirements/doc.txt
3131 - name : Build ulist
3232 run : |
3333 maturin build --out dist -m ulist/Cargo.toml
Original file line number Diff line number Diff line change 1+ -r common.txt
2+ # A-Z
3+ numpy==1.22.0
Original file line number Diff line number Diff line change 1+ # A-Z
2+ maturin==0.12.6
Original file line number Diff line number Diff line change 1+ -r dev.txt
2+ # A-Z
3+ pytest-cov==3.0.0
Original file line number Diff line number Diff line change 1+ -r common.txt
2+ # A-Z
3+ flake8==4.0.1
4+ mypy==0.930
5+ pytest==6.2.5
Original file line number Diff line number Diff line change 1+ -r common.txt
2+ # A-Z
3+ sphinx==4.3.2
You can’t perform that action at this time.
0 commit comments