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
6 changes: 6 additions & 0 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions .ci_support/win_arm64_freethreadingno.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
build_type:
- release
bzip2:
- '1'
c_compiler:
- vs2022
c_stdlib:
- vs
channel_sources:
- conda-forge/label/python_rc,conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- vs2022
expat:
- '2'
freethreading:
- 'no'
libffi:
- '3.5'
liblzma_devel:
- '5'
libsqlite:
- '3'
openssl:
- '3.5'
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- '3.14'
target_platform:
- win-arm64
tk:
- '8.6'
zip_keys:
- - build_type
- channel_targets
zlib:
- '1'
zstd:
- '1.5'
43 changes: 43 additions & 0 deletions .ci_support/win_arm64_freethreadingyes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
build_type:
- release
bzip2:
- '1'
c_compiler:
- vs2022
c_stdlib:
- vs
channel_sources:
- conda-forge/label/python_rc,conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- vs2022
expat:
- '2'
freethreading:
- 'yes'
libffi:
- '3.5'
liblzma_devel:
- '5'
libsqlite:
- '3'
openssl:
- '3.5'
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- '3.14'
target_platform:
- win-arm64
tk:
- '8.6'
zip_keys:
- - build_type
- channel_targets
zlib:
- '1'
zstd:
- '1.5'
19 changes: 19 additions & 0 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ build_platform:
linux_aarch64: linux_64
linux_ppc64le: linux_64
osx_arm64: osx_64
win_arm64: win_64
conda_build:
pkg_format: '2'
conda_forge_output_validation: true
Expand Down
11 changes: 7 additions & 4 deletions recipe/build_base.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@ setlocal EnableDelayedExpansion
echo on

:: Compile python, extensions and external libraries
if "%ARCH%"=="64" (
if "%target_platform%"=="win-64" (
set PLATFORM=x64
set VC_PATH=x64
set BUILD_PATH=amd64
) else (
)
if "%target_platform%"=="win-32" (
set PLATFORM=Win32
set VC_PATH=x86
set BUILD_PATH=win32
)
if "%target_platform%"=="win-arm64" (
set PLATFORM=ARM64
set BUILD_PATH=arm64
)

for /F "tokens=1,2 delims=." %%i in ("%PKG_VERSION%") do (
set "VERNODOTS=%%i%%j"
Expand Down
Loading