We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c16a3 commit 9a77db7Copy full SHA for 9a77db7
.github/workflows/tests.yml
@@ -74,8 +74,13 @@ jobs:
74
pip install --editable=.[test,develop]
75
76
- name: Run linter and software tests
77
+ if: matrix.python != '3.7' && matrix.python != '3.8' && matrix.python != '3.9'
78
run: poe check
79
80
+ - name: Run software tests
81
+ if: matrix.python == '3.7' && matrix.python == '3.8' && matrix.python == '3.9'
82
+ run: poe test
83
+
84
- name: Upload coverage to Codecov
85
uses: codecov/codecov-action@v5
86
env:
pyproject.toml
@@ -66,7 +66,7 @@ dependencies = [
66
]
67
optional-dependencies.develop = [
68
"poethepoet<1",
69
- "proselint>=0.16,<1",
+ "proselint>=0.16,<1; python_version>='3.10'",
70
"pyproject-fmt<3",
71
"ruff<0.15",
72
"validate-pyproject<1",
0 commit comments