Skip to content

Commit

Permalink
Merge pull request #86 from robotpy/update-gh-actions
Browse files Browse the repository at this point in the history
Update gh actions
  • Loading branch information
virtuald authored May 16, 2024
2 parents 36357a0 + d1ec3bf commit 9c47f1d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: psf/black@stable

check-doc:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Sphinx
Expand All @@ -32,22 +32,22 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-20.04]
python_version: [3.5, 3.6, 3.7, 3.8]
architecture: [x86, x64]
os: [windows-latest, macos-13, ubuntu-20.04]
python_version: [3.8]
architecture: [x64]
exclude:
- os: macos-latest
- os: macos-13
architecture: x86
- os: ubuntu-20.04
architecture: x86

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
architecture: ${{ matrix.architecture }}
Expand All @@ -72,12 +72,12 @@ jobs:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8
- run: pip --disable-pip-version-check install wheel
Expand Down
6 changes: 3 additions & 3 deletions CppHeaderParser/CppHeaderParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1879,9 +1879,9 @@ def finalize_vars(self):
elif tag in self._template_typenames:
var["typename"] = tag
var["ctypes_type"] = "ctypes.c_void_p"
var[
"unresolved"
] = True # TODO, how to deal with templates?
var["unresolved"] = (
True # TODO, how to deal with templates?
)

elif tag.startswith(
"_"
Expand Down

0 comments on commit 9c47f1d

Please sign in to comment.