Skip to content

Commit 0b4c3ad

Browse files
authored
Set dependencies to the most minimum version (#454)
1 parent 25ba63d commit 0b4c3ad

File tree

4 files changed

+769
-881
lines changed

4 files changed

+769
-881
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ concurrency:
77
on:
88
workflow_dispatch:
99
push:
10-
branches: [ main ]
10+
branches: [main]
1111
pull_request_target:
12-
branches: [ main ]
12+
branches: [main]
1313

1414
jobs:
1515
test:
@@ -20,6 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
python-version: ["3.8", "3.9", "3.10", "3.11"]
23+
requirements-version: ["min", "max"]
2324
steps:
2425
- name: Checkout Push/Workflow Dispatch
2526
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
@@ -39,6 +40,10 @@ jobs:
3940
- name: Install package
4041
run: make install
4142

43+
- name: Install minimum package versions
44+
run: poetry run pip install -r requirements-test.txt
45+
if: ${{ matrix.requirements-version == 'min' }}
46+
4247
- name: Lint
4348
run: make lint
4449

0 commit comments

Comments
 (0)