File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 1818 - name : Set up Python
1919 uses : actions/setup-python@v4
2020 with :
21- python-version : ' 3.9 '
21+ python-version : ' 3.10 '
2222
2323 - name : Install dependencies
2424 run : |
2727
2828 # Install project dependencies
2929 pip install -e .
30- pip install -r requirements_39 .txt
30+ pip install -r requirements .txt
3131
3232 - name : Build documentation
3333 run : |
Original file line number Diff line number Diff line change 1212 strategy :
1313 fail-fast : false
1414 matrix :
15- python-version : ["3.9 ", "3.10 ", "3.11 "]
15+ python-version : ["3.10 ", "3.11 ", "3.12 "]
1616
1717 steps :
1818 - uses : actions/checkout@v3
2626 run : |
2727 python -m pip install --upgrade pip
2828 python -m pip install pytest pytest-cov
29- if [ "${{ matrix.python-version }}" = "3.9" ]; then
30- python -m pip install -r requirements_39.txt
31- elif [ "${{ matrix.python-version }}" = "3.10" ]; then
32- python -m pip install -r requirements_310.txt
33- elif [ "${{ matrix.python-version }}" = "3.11" ]; then
34- python -m pip install -r requirements_311.txt
35- fi
29+ python -m pip install -r requirements.txt
3630 python -m pip install -e .
3731
3832 - name : Install system dependencies
You can’t perform that action at this time.
0 commit comments