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 da10bd1 commit 7b803ebCopy full SHA for 7b803eb
.github/workflows/build.yml
@@ -46,7 +46,7 @@ jobs:
46
- name: Install dependencies
47
run: |
48
python -m pip install --upgrade pip
49
- if [ -f pyproject.toml ]; then pip install flake8 '.[test]'; fi
+ if [ -f pyproject.toml ]; then pip install '.[dev]'; fi
50
- name: Lint with flake8
51
52
# stop the build if there are Python syntax errors or undefined names
pyproject.toml
@@ -38,3 +38,9 @@ classifiers = [
38
[project.urls]
39
Homepage = "https://github.com/chaimleib/intervaltree"
40
Issues = "https://github.com/chaimleib/intervaltree/issues"
41
+
42
+[project.optional-dependencies]
43
+dev = [
44
+ "flake8",
45
+ "pytest",
+]
0 commit comments