Skip to content

Commit

Permalink
[ci] pinned runner versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy committed Jun 23, 2024
1 parent 89c946c commit b487635
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/kdmp-parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
- {os: windows-2019, generator: ninja, arch: x64, config: RelWithDebInfo}
- {os: windows-2019, generator: msvc, arch: win32, config: RelWithDebInfo}
# - {os: windows-latest, generator: msvc, arch: arm64, config: RelWithDebInfo}
- {os: ubuntu-latest, generator: gcc, arch: x64, config: RelWithDebInfo}
- {os: ubuntu-latest, generator: clang, arch: x64, config: RelWithDebInfo}
- {os: ubuntu-2204, generator: gcc, arch: x64, config: RelWithDebInfo}
- {os: ubuntu-2204, generator: clang, arch: x64, config: RelWithDebInfo}
# most up to date free intel based osx?
- {os: macos-13, generator: clang, arch: x64, config: Release}
runs-on: ${{ matrix.variant.os }}
Expand Down Expand Up @@ -114,8 +114,8 @@ jobs:
- {os: windows-2019, generator: msvc, arch: x64, config: RelWithDebInfo, py-arch: x64}
- {os: windows-2019, generator: msvc, arch: win32, config: RelWithDebInfo, py-arch: x86}
# - {os: windows-latest, generator: msvc, arch: arm64, config: RelWithDebInfo, py-arch: x64} # Unsupported (see https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json)
- {os: ubuntu-latest, generator: gcc, arch: x64, config: RelWithDebInfo, py-arch: x64}
- {os: ubuntu-latest, generator: clang, arch: x64, config: RelWithDebInfo, py-arch: x64}
- {os: ubuntu-2204, generator: gcc, arch: x64, config: RelWithDebInfo}
- {os: ubuntu-2204, generator: clang, arch: x64, config: RelWithDebInfo}
# most up to date free intel based osx?
- {os: macos-13, generator: clang, arch: x64, config: Release, py-arch: x64}
runs-on: ${{ matrix.variant.os }}
Expand Down
7 changes: 6 additions & 1 deletion src/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Assemblers",
"Natural Language :: English",
]
Expand All @@ -37,4 +42,4 @@ test-command = "pytest {project}/tests"
test-requires = "pytest"

[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.14"
MACOSX_DEPLOYMENT_TARGET = "10.13"

0 comments on commit b487635

Please sign in to comment.