Skip to content

Commit ba9890f

Browse files
committed
fixup
1 parent 69f27e5 commit ba9890f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci.yml

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

3030
- name: Build msgspec and install dependencies
3131
run: |
32-
pip install coverage -e ".[test]"
32+
pip install -e ".[dev]"
3333
3434
- name: Run pre-commit hooks
3535
uses: pre-commit/action@v3.0.0

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,13 @@
5353
doc_deps = ["sphinx", "furo", "sphinx-copybutton", "sphinx-design", "ipython"]
5454
test_deps = [
5555
"pytest",
56-
"mypy",
57-
"pyright",
5856
"msgpack",
5957
"attrs",
6058
'eval-type-backport ; python_version < "3.10"',
6159
*yaml_deps,
6260
*toml_deps,
6361
]
64-
dev_deps = ["pre-commit", "coverage", "gcovr", *doc_deps, *test_deps]
62+
dev_deps = ["pre-commit", "coverage", "mypy", "pyright", *doc_deps, *test_deps]
6563

6664
extras_require = {
6765
"yaml": yaml_deps,

0 commit comments

Comments
 (0)