Skip to content

Commit

Permalink
Consolidate development dependencies as 'dev'
Browse files Browse the repository at this point in the history
We're not benefiting from the finer granularity, so keep things simpler.
  • Loading branch information
jparise committed Apr 14, 2024
1 parent 2bd6040 commit fbd534d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[lint,test,typing]
pip install -e .[dev]
- name: Lint
run: |
ruff check --output-format=github
Expand Down
10 changes: 3 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,12 @@ docs = [
"furo==2024.1.29",
"sphinx_mdinclude==0.5.3",
]
lint = [
"ruff==0.3.0",
]
test = [
dev = [
"mypy==1.9.0",
"pytest==8.1.0",
"pytest-cov==5.0.0",
"respx==0.21.0",
]
typing = [
"mypy==1.9.0",
"ruff==0.3.0",
]

[project.urls]
Expand Down

0 comments on commit fbd534d

Please sign in to comment.