Skip to content

Commit c21ce5d

Browse files
committed
Initial work for release of v0.6.1
1 parent 2796645 commit c21ce5d

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ flake8: $(VENV_DIR) ## check compliance with pep8
7777
black: $(VENV_DIR) ## use black to autoformat code
7878
@status=$$(git status --porcelain); \
7979
if test "x$${status}" = x; then \
80-
$(VENV_DIR)/bin/black --exclude _version.py --py36 $(FILES_TO_FORMAT_PYTHON); \
80+
$(VENV_DIR)/bin/black --exclude _version.py --target-version py37 $(FILES_TO_FORMAT_PYTHON); \
8181
else \
8282
echo Not trying any formatting, working directory is dirty... >&2; \
8383
fi;

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,7 @@
2929
REQUIREMENTS_DEPLOY = ["twine>=1.11.0", "setuptools>=38.6.0", "wheel>=0.31.0"]
3030

3131
requirements_dev = [
32-
*[
33-
"flake8",
34-
"black",
35-
"pyam-iamc>=0.2.0",
36-
],
32+
*["flake8", "black", "pyam-iamc>=0.2.0"],
3733
*REQUIREMENTS_TESTS,
3834
*REQUIREMENTS_DOCS,
3935
*REQUIREMENTS_DEPLOY,

0 commit comments

Comments
 (0)