Skip to content

Commit 06b2f13

Browse files
committed
fix(ci): Remove Python 3.8 and unify dev dependencies
- Removing Python 3.8 from test matrix (package requires >=3.9). - Updating quality.yml to use \pip install .[dev]\ for version consistency.
1 parent 2faec2e commit 06b2f13

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/quality.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616

1717
- name: Install dependencies
1818
run: |
19-
pip install black flake8 isort mypy
19+
python -m pip install --upgrade pip
20+
pip install ".[dev]"
2021
2122
- name: Check formatting (black)
2223
run: black --check optimization_benchmarks tests

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
15-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
15+
python-version: ['3.9', '3.10', '3.11', '3.12']
1616

1717
steps:
1818
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)