Skip to content

Commit e180cce

Browse files
committed
Make black and isort mandatory for now
Most users will probably have a nicer experience with formatted stubs out of the box.
1 parent e00c656 commit e180cce

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Install package
6363
run: |
64-
python -m pip install .[test,optional]
64+
python -m pip install .[test]
6565
python -m docstub --version
6666
docstub --help
6767

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,11 @@ dependencies = [
3131
"click >=8.1.7",
3232
"libcst >=1.3.1",
3333
"lark >=1.1.9",
34-
]
35-
36-
[project.optional-dependencies]
37-
optional = [
3834
"black >=24.4.2",
3935
"isort >=5.13.2",
4036
]
37+
38+
[project.optional-dependencies]
4139
dev = [
4240
"pre-commit >=3.7",
4341
"ipython",

0 commit comments

Comments
 (0)