Skip to content

Commit 5a74630

Browse files
Updated files with 'repo_helper'. (#10)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 1b81aa7 commit 5a74630

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.github/workflows/conda_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
python -m pip install --upgrade repo_helper
3030
# $CONDA is an environment variable pointing to the root of the miniconda directory
3131
$CONDA/bin/conda update -q conda
32-
$CONDA/bin/conda install conda-build
32+
$CONDA/bin/conda install conda-build=3.21.0
3333
3434
$CONDA/bin/conda config --add channels conda-forge
3535
$CONDA/bin/conda config --add channels domdfcoding

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Install dependencies 🔧
7070
run: |
7171
python -m pip install --upgrade pip setuptools wheel
72-
python -m pip install --upgrade coveralls coverage_pyver_pragma
72+
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
7373
7474
- name: "Download Coverage 🪂"
7575
uses: actions/download-artifact@v2
@@ -95,7 +95,7 @@ jobs:
9595
env:
9696
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9797
run: |
98-
coveralls
98+
coveralls --service=github
9999
100100
Deploy:
101101
needs: tests

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ repos:
4040
- id: ensure-dunder-all
4141
files: ^flake8_sphinx_links/.*\.py$
4242

43+
- repo: https://github.com/domdfcoding/flake2lint
44+
rev: v0.2.0
45+
hooks:
46+
- id: flake2lint
47+
4348
- repo: https://github.com/pre-commit/pygrep-hooks
4449
rev: v1.7.0
4550
hooks:

.readthedocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ python:
1111
install:
1212
- requirements: requirements.txt
1313
- requirements: doc-source/requirements.txt
14+
- method: pip
15+
path: .

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ exclude_lines =
140140
if TYPE_CHECKING:
141141
if typing.TYPE_CHECKING:
142142
if __name__ == .__main__.:
143+
\.\.\.
143144
144145
[check-wheel-contents]
145146
ignore = W002

0 commit comments

Comments
 (0)