Skip to content

Commit 522b6b2

Browse files
Updated files with 'repo_helper'. (#42)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 65676cd commit 522b6b2

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,4 @@ jobs:
7878
with:
7979
name: "coverage-${{ matrix.config.python-version }}"
8080
path: .coverage
81+
include-hidden-files: true

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
with:
8181
name: "coverage-${{ matrix.config.python-version }}"
8282
path: .coverage
83+
include-hidden-files: true
8384

8485

8586
Coverage:
@@ -122,6 +123,7 @@ jobs:
122123
with:
123124
name: "combined-coverage"
124125
path: .coverage
126+
include-hidden-files: true
125127

126128
- name: "Upload Combined Coverage to Coveralls"
127129
if: ${{ steps.show.outcome != 'failure' }}
@@ -207,6 +209,7 @@ jobs:
207209
$CONDA/bin/conda config --set always_yes yes --set changeps1 no
208210
$CONDA/bin/conda update -n base conda
209211
$CONDA/bin/conda info -a
212+
$CONDA/bin/conda install conda-forge::py-lief=0.14.1
210213
$CONDA/bin/conda config --add channels conda-forge
211214
$CONDA/bin/conda config --add channels domdfcoding
212215

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,4 @@ jobs:
7878
with:
7979
name: "coverage-${{ matrix.config.python-version }}"
8080
path: .coverage
81+
include-hidden-files: true

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ci:
88

99
repos:
1010
- repo: https://github.com/repo-helper/pyproject-parser
11-
rev: v0.11.1
11+
rev: v0.13.0
1212
hooks:
1313
- id: reformat-pyproject
1414

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ Automated tests
3838
-------------------
3939

4040
Tests are run with ``tox`` and ``pytest``.
41-
To run tests for a specific Python version, such as Python 3.6:
41+
To run tests for a specific Python version, such as Python 3.10:
4242

4343
.. code-block:: bash
4444
45-
$ tox -e py36
45+
$ tox -e py310
4646
4747
4848
To run tests for all Python versions, simply run:

doc-source/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ Automated tests
3838
-------------------
3939

4040
Tests are run with ``tox`` and ``pytest``.
41-
To run tests for a specific Python version, such as Python 3.6:
41+
To run tests for a specific Python version, such as Python 3.10:
4242

4343
.. prompt:: bash
4444

45-
tox -e py36
45+
tox -e py310
4646

4747

4848
To run tests for all Python versions, simply run:

0 commit comments

Comments
 (0)