Skip to content

Commit

Permalink
Fixed some build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlegiantJGC committed Oct 30, 2024
1 parent 64263f4 commit a8fcac2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ jobs:
fail-fast: false
matrix:
cfg:
- { os: windows-latest, architecture: x64, python-version: "3.9" }
- { os: windows-latest, architecture: x86, python-version: "3.9" }
- { os: macos-13, architecture: x64, python-version: "3.9" }
- { os: macos-latest, architecture: arm64, python-version: "3.9" }
- { os: windows-latest, architecture: x64, python-version: "3.10" }
- { os: windows-latest, architecture: x86, python-version: "3.10" }
- { os: macos-13, architecture: x64, python-version: "3.10" }
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/python-unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ jobs:
strategy:
matrix:
cfg:
- { os: windows-latest, architecture: x64, python-version: "3.9" }
- { os: windows-latest, architecture: x86, python-version: "3.9" }
- { os: macos-13, architecture: x64, python-version: "3.9" }
- { os: macos-latest, architecture: arm64, python-version: "3.9" }
- { os: ubuntu-latest, architecture: x64, python-version: "3.9" }
- { os: windows-latest, architecture: x64, python-version: "3.10" }
- { os: windows-latest, architecture: x86, python-version: "3.10" }
- { os: macos-13, architecture: x64, python-version: "3.10" }
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ platforms = any
packages = find_namespace:
package_dir =
= src
python_requires = ~=3.9
python_requires = ~=3.10
[options.packages.find]
where = src
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

if sys.platform == "darwin":
define_macros.append(("OS_MACOSX", None))
# shared_mutex needs MacOS 10.12+
extra_compile_args.append("-mmacosx-version-min=10.12")
# shared_mutex needs MacOS 10.12+, filesystem needs 10.15
extra_compile_args.append("-mmacosx-version-min=10.15")
extra_compile_args.append("-Werror=partial-availability")
extra_link_args.append("-Wl,-no_weak_imports")
else:
Expand Down

0 comments on commit a8fcac2

Please sign in to comment.