Skip to content

Commit 887779a

Browse files
committed
Rename dev extra to "dev"
Instead of testing ... and update references accordingly Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 5bc987a commit 887779a

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.readthedocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ python:
2626
- method: pip
2727
path: .
2828
extra_requirements:
29-
- testing
29+
- dev

Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ PYTHON_EXE?=python3
1313
VENV=venv
1414
ACTIVATE?=. ${VENV}/bin/activate;
1515

16+
17+
conf:
18+
@echo "-> Install dependencies"
19+
./configure
20+
1621
dev:
17-
@echo "-> Configure the development envt."
22+
@echo "-> Configure and install development dependencies"
1823
./configure --dev
1924

2025
doc8:

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ CLI_ARGS=$1
2929

3030
# Requirement arguments passed to pip and used by default or with --dev.
3131
REQUIREMENTS="--editable . --constraint requirements.txt"
32-
DEV_REQUIREMENTS="--editable .[testing] --constraint requirements.txt --constraint requirements-dev.txt"
32+
DEV_REQUIREMENTS="--editable .[dev] --constraint requirements.txt --constraint requirements-dev.txt"
3333

3434
# where we create a virtualenv
3535
VIRTUALENV_DIR=venv

configure.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
@rem # Requirement arguments passed to pip and used by default or with --dev.
2929
set "REQUIREMENTS=--editable . --constraint requirements.txt"
30-
set "DEV_REQUIREMENTS=--editable .[testing] --constraint requirements.txt --constraint requirements-dev.txt"
30+
set "DEV_REQUIREMENTS=--editable .[dev] --constraint requirements.txt --constraint requirements-dev.txt"
3131

3232
@rem # where we create a virtualenv
3333
set "VIRTUALENV_DIR=venv"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ where = src
4848

4949

5050
[options.extras_require]
51-
testing =
51+
dev =
5252
pytest >= 6, != 7.0.0
5353
pytest-xdist >= 2
5454
aboutcode-toolkit >= 7.0.2

0 commit comments

Comments
 (0)