Skip to content

Commit

Permalink
Enable python 3.12 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dihm committed May 23, 2024
1 parent 0ebcabf commit dcccbfd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/make_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,24 @@ jobs:
fail-fast: false
matrix:
include:
- { os: ubuntu-latest, python: '3.12', arch: x64}
- { os: ubuntu-latest, python: '3.11', arch: x64}
- { os: ubuntu-latest, python: '3.10', arch: x64 }
- { os: ubuntu-latest, python: '3.9', arch: x64 }
- { os: ubuntu-latest, python: '3.8', arch: x64 }

- { os: macos-13, python: '3.12', arch: x64 }
- { os: macos-13, python: '3.11', arch: x64 }
- { os: macos-13, python: '3.10', arch: x64 }
- { os: macos-13, python: '3.9', arch: x64 }
- { os: macos-13, python: '3.8', arch: x64 }

- { os: macos-latest, python: '3.12', arch: arm64}
- { os: macos-latest, python: '3.11', arch: arm64}
- { os: macos-latest, python: '3.10', arch: arm64}
- { os: macos-latest, python: '3.9', arch: arm64}

- { os: windows-latest, python: '3.12', arch: x64 }
- { os: windows-latest, python: '3.11', arch: x64 }
- { os: windows-latest, python: '3.10', arch: x64 }
- { os: windows-latest, python: '3.9', arch: x64 }
Expand Down
2 changes: 1 addition & 1 deletion pkgs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source = "pypi"
noarch = true
build_args = [] # --noarch will automatically be added if applicable
# The below will only be used if noarch is False
pythons = ["3.8", "3.9", "3.10", "3.11"]
pythons = ["3.8", "3.9", "3.10", "3.11", "3.12"]
platforms = ["win-64", "osx-64", "osx-arm64", "linux"]

### only available on PyPI
Expand Down

0 comments on commit dcccbfd

Please sign in to comment.