Skip to content

Commit 5004e65

Browse files
committed
Updated files with 'repo_helper'.
1 parent f747f5a commit 5004e65

28 files changed

+295
-212
lines changed

.ci/travis_deploy_conda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file is managed by `repo_helper`. Don't edit it directly
2+
# This file is managed by 'repo_helper'. Don't edit it directly.
33

44
set -e -x
55

.dependabot/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by `repo_helper`. Don't edit it directly
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
22
---
33

44
version: 1

.github/auto_assign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by `repo_helper`. Don't edit it directly
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
22
---
33

44
addReviewers: true

.github/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by `repo_helper`. Don't edit it directly
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
22
# Configuration for probot-stale - https://github.com/probot/stale
33
---
44

.github/workflows/docs_test_action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
12
---
23
name: "Docs Check"
34
on:

.github/workflows/octocheese.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by `repo_helper`. Don't edit it directly
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
22
---
33

44
name: "GitHub Releases"

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by `repo_helper`. Don't edit it directly
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
22
---
33
name: Windows Tests
44

@@ -33,7 +33,7 @@ jobs:
3333
python -VV
3434
python -m site
3535
python -m pip install --upgrade pip setuptools wheel
36-
python -m pip install --upgrade tox tox-gh-actions
36+
python -m pip install --upgrade tox tox-gh-actions virtualenv
3737
3838
- name: "Run Tests for Python ${{ matrix.python-version }}"
3939
run: "python -m tox"

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by `repo_helper`. Don't edit it directly
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
22
---
33
name: macOS Tests
44

@@ -33,7 +33,7 @@ jobs:
3333
python -VV
3434
python -m site
3535
python -m pip install --upgrade pip setuptools wheel
36-
python -m pip install --upgrade tox tox-gh-actions
36+
python -m pip install --upgrade tox tox-gh-actions virtualenv
3737
3838
- name: "Run Tests for Python ${{ matrix.python-version }}"
3939
run: "python -m tox"

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# This file is managed by `repo_helper`. Don't edit it directly
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
22
__pycache__/
33
*.py[cod]
44
*$py.class
5-
*.so.Python
5+
*.so
6+
.Python
67
build/
78
develop-eggs/
89
dist/

.isort.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[settings]
22
line_length = 115
33
force_to_top = True
4-
indent = Tab
5-
multi_line_output = 3
4+
indent = " "
5+
multi_line_output = 8
66
import_heading_stdlib = stdlib
77
import_heading_thirdparty = 3rd party
88
import_heading_firstparty = this package
@@ -23,3 +23,4 @@ known_third_party =
2323
pytest-rerunfailures
2424
requests
2525
known_first_party = flake8_sphinx_links
26+
remove_redundant_aliases = True

0 commit comments

Comments
 (0)