Skip to content

Commit

Permalink
fix: Intel x86_64 macOS issue with wrapt 1.17 (#5657)
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerHYang authored Dec 9, 2024
1 parent 1fbbb18 commit c1aa93d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
strategy:
matrix:
py: [3.9, 3.12]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -110,7 +110,7 @@ jobs:
strategy:
matrix:
py: [3.9, 3.12]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -339,7 +339,7 @@ jobs:
strategy:
matrix:
py: [3.9, 3.12]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:
matrix:
py: [3.9, 3.12]
db: [sqlite, postgresql]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-13]
exclude:
- db: postgresql
os: windows-latest
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ dependencies = [
"pyarrow",
"typing-extensions>=4.6",
"scipy",
"wrapt",
"wrapt<1.17; sys_platform == 'darwin'",
"wrapt; sys_platform != 'darwin'",
"protobuf>=3.20.2, <6.0",
"grpcio",
"grpc-interceptor",
Expand Down

0 comments on commit c1aa93d

Please sign in to comment.