Skip to content

Commit 6eb6d63

Browse files
committed
Fix docstyle check
1 parent 52a418b commit 6eb6d63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ environment:
1414
install:
1515
- '%PYTHON%\python.exe -m pip install -U pip wheel setuptools'
1616
- '%PYTHON%\python.exe -m pip install .[tests]'
17-
- '%PYTHON%\python.exe -m pip install flake8 flake8-docstrings'
17+
- '%PYTHON%\python.exe -m pip install "pydocstyle<4.0.0" flake8 flake8-docstrings'
1818

1919
test_script:
2020
- '%PYTHON%\python.exe -m pytest'

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ matrix:
1818
install:
1919
- if [[ "$TEST_MODE" == "DOCS" ]]; then pip install -q .; fi
2020
- if [[ "$TEST_MODE" != "DOCS" ]]; then pip install -q .[tests]; fi
21-
- if [[ "$TEST_MODE" != "DOCS" ]]; then pip install flake8 flake8-docstrings; fi
21+
- if [[ "$TEST_MODE" != "DOCS" ]]; then pip install "pydocstyle<4.0.0" flake8 flake8-docstrings; fi
2222
script:
2323
- if [[ "$TEST_MODE" != "DOCS" ]]; then pytest; fi
2424
- if [[ "$TEST_MODE" != "DOCS" ]]; then flake8; fi

0 commit comments

Comments
 (0)