Skip to content

Commit 272aa1e

Browse files
committed
build: fix official version computation
Signed-off-by: Gaetan Semet <[email protected]>
1 parent de2bedb commit 272aa1e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ all: clean dev style checks dists test docs
4545

4646
dev: clean-ln-venv ensure-pip pipenv-install-dev requirements ln-venv setup-githook \
4747
prepare-install install-dev-locale
48-
dev-actions: ensure-pip-system pipenv-install-dev requirements setup-githook prepare-install
48+
dev-actions: ensure-pip-system pipenv-install-dev requirements prepare-install
4949

5050
ensure-pip:
5151
./scripts/bootstrap-dev-pip.sh

requirements-dev.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ astroid
1515
autopep8
1616
black==21.8b0
1717
colorlog
18-
dephell
18+
dataclasses
1919
fiximports>=0.1.18
2020
flake8
21+
flakehell
22+
mock>=2.0.0
2123
pathlib2
2224
pep8
2325
pew
@@ -29,9 +31,10 @@ pytest
2931
pytest-cov
3032
pytest-mock
3133
reno[sphinx]>=2.8.0
32-
scandir ; python_version < '3.5'
34+
scandir ; python_version > '3.5'
3335
sphinx-rtd-theme
3436
sphinxcontrib-programoutput
37+
toml
3538
twine
3639
typed-ast
3740
yapf

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
# `Pipfile.lock` and then regenerate `requirements*.txt`.
1111
################################################################################
1212

13-
importlib_metadata; python_version < '3.8'
14-
typing ; python_version < '3.5'
13+
pbr
14+
typing ; python_version > '3.5'
15+
wheel

0 commit comments

Comments
 (0)