Skip to content

Commit b61e89e

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

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

.github/workflows/octocheese.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
schedule:
77
- cron: 0 12 * * *
88

9+
permissions:
10+
contents: write
11+
912
jobs:
1013
Run:
1114
runs-on: ubuntu-latest

.github/workflows/python_ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2022"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -76,3 +76,4 @@ jobs:
7676
with:
7777
name: "coverage-${{ matrix.config.python-version }}"
7878
path: .coverage
79+
include-hidden-files: true

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 1 deletion
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' }}
@@ -159,7 +161,7 @@ jobs:
159161
160162
- name: Upload distribution to PyPI 🚀
161163
if: startsWith(github.ref, 'refs/tags/')
162-
uses: pypa/gh-action-pypi-publish@v1.4.2
164+
uses: pypa/gh-action-pypi-publish@v1.13.0
163165
with:
164166
user: __token__
165167
password: ${{ secrets.PYPI_TOKEN }}
@@ -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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.7", os-ver: "13", testenvs: "py37,build", experimental: False}
31+
- {python-version: "3.7", os-ver: "15-intel", testenvs: "py37,build", experimental: False}
3232
- {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False}
3434
- {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False}
3535
- {python-version: "3.11", os-ver: "14", testenvs: "py311,build", experimental: False}
3636
- {python-version: "3.12", os-ver: "14", testenvs: "py312,build", experimental: False}
3737
- {python-version: "3.13", os-ver: "14", testenvs: "py313,build", experimental: False}
38-
- {python-version: "pypy-3.7", os-ver: "13", testenvs: "pypy37,build", experimental: True}
38+
- {python-version: "pypy-3.7", os-ver: "15-intel", testenvs: "pypy37,build", experimental: True}
3939
- {python-version: "pypy-3.8", os-ver: "14", testenvs: "pypy38,build", experimental: True}
4040
- {python-version: "pypy-3.9", os-ver: "14", testenvs: "pypy39,build", experimental: True}
4141

@@ -79,3 +79,4 @@ jobs:
7979
with:
8080
name: "coverage-${{ matrix.config.python-version }}"
8181
path: .coverage
82+
include-hidden-files: true

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repos:
4343
- id: bind-requirements
4444

4545
- repo: https://github.com/python-formate/flake8-dunder-all
46-
rev: v0.4.1
46+
rev: v0.5.0
4747
hooks:
4848
- id: ensure-dunder-all
4949
files: ^github3_utils/.*\.py$
@@ -62,7 +62,7 @@ repos:
6262
- id: rst-inline-touching-normal
6363

6464
- repo: https://github.com/asottile/pyupgrade
65-
rev: v2.12.0
65+
rev: v3.3.0
6666
hooks:
6767
- id: pyupgrade
6868
args:

doc-source/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
attr-utils>=0.5.5
22
default-values>=0.6.0
3+
docutils<0.22
34
extras-require>=0.5.0
45
furo==2021.06.18b36
56
html-section>=0.3.0
7+
roman>=4.0
68
seed-intersphinx-mapping>=1.2.2
79
sphinx>=3.0.3
810
sphinx-autofixture>=0.2.2

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ download = True
6969
setenv =
7070
PYTHONDEVMODE=1
7171
PIP_DISABLE_PIP_VERSION_CHECK=1
72-
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
7372

7473
[testenv:py312]
7574
download = True
@@ -125,11 +124,12 @@ deps =
125124
flake8-sphinx-links>=0.0.4
126125
flake8-strftime>=0.1.1
127126
flake8-typing-imports>=1.10.0
127+
git+https://github.com/domdfcoding/restructuredtext-lint.git@fix-deprecations
128128
git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git
129129
git+https://github.com/domdfcoding/flake8-rst-docstrings.git
130130
git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods
131131
git+https://github.com/python-formate/flake8-missing-annotations.git
132-
pydocstyle>=6.0.0
132+
git+https://github.com/domdfcoding/pydocstyle.git@stub-functions
133133
pygments>=2.7.1
134134
importlib_metadata<4.5.0; python_version<'3.8'
135135
commands = python3 -m flake8_rst_docstrings_sphinx github3_utils tests --allow-toolbox {posargs}

0 commit comments

Comments
 (0)