Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,21 @@ jobs:
# Ensure that a wheel builder finishes even if another fails
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python: [39, 310, 311, 312, 313]
os: [windows-latest, ubuntu-latest, ubuntu-24.04-arm, macos-latest]
python: [310, 311, 312, 313, 314]
arch: [auto64, universal2]
build: ["cp"]
exclude:
- os: ubuntu-latest
arch: universal2
- os: ubuntu-24.04-arm
arch: universal2
- os: windows-latest
arch: universal2
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- uses: pypa/cibuildwheel@v2.23
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
- uses: pypa/cibuildwheel@v3.2
env:
CIBW_BUILD_FRONTEND: "build[uv]"
CIBW_BUILD: "${{ matrix.build }}${{ matrix.python }}*"
Expand All @@ -80,8 +82,8 @@ jobs:
needs: check_approval
if: needs.check_approval.outputs.should_build == 'true'
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
- run: uv build --sdist
- uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
]
keywords = ["optimization"]
dynamic = ["version"]
urls = { homepage = "https://pymoo.org" }
requires-python = ">= 3.9"
requires-python = ">= 3.10"
dependencies = [
"numpy>=1.19.3",
"scipy>=1.1",
Expand Down
Loading