Skip to content

Commit 483db91

Browse files
committed
Use dev for optional development dependencies
1 parent f3d43ae commit 483db91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
33-
python -m pip install .[development]
33+
python -m pip install .[dev]
3434
- name: Lint with flake8
3535
run: |
3636
# stop the build if there are Python syntax errors or undefined names

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ version = {attr = "gns3server.version.__version__"}
3939
dependencies = {file = "requirements.txt"}
4040

4141
[tool.setuptools.dynamic.optional-dependencies]
42-
development = {file = ['dev-requirements.txt']}
42+
dev = {file = ['dev-requirements.txt']}
4343

4444
[project.urls]
4545
"Homepage" = "http://gns3.com"

0 commit comments

Comments
 (0)