Skip to content

Commit 04e1abd

Browse files
fixing setup
1 parent e5cb7ba commit 04e1abd

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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: |
@@ -27,7 +27,7 @@ jobs:
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: |

.github/workflows/pytest.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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
@@ -26,13 +26,7 @@ jobs:
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

0 commit comments

Comments
 (0)