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
2 changes: 2 additions & 0 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ python:
- 3.10
python_impl:
- cpython
openssl:
- 3.0 # [win]
libffi: # [win]
- 3.4 # [win]
numpy:
Expand Down
21 changes: 14 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% set ver2 = '.'.join(version.split('.')[0:2]) %}
{% set ver2nd = ''.join(version.split('.')[0:2]) %}
{% set ver3nd = ''.join(version.split('.')[0:3]) %}
{% set build_number = "1" %}
{% set build_number = "2" %}
{% set channel_targets = ('abc', 'def') %}

# this makes the linter happy
Expand Down Expand Up @@ -84,9 +84,11 @@ source:
- patches/0023-unvendor-xz.patch
- patches/0024-unvendor-zlib.patch
- patches/0025-Do-not-pass-g-to-GCC-when-not-Py_DEBUG.patch
{% if (openssl | string).startswith('3.0') %}
- patches/0026-Use-OpenSSL-3-instead-of-1_1.patch
{% endif %}
- patches/0026-Use-OpenSSL-3-instead-of-1_1.patch # [win]
# https://github.com/python/cpython/pull/100373 (OpenSSL 3.5.7 Windows cert-store fix)
- patches/0027-Fix-ssl-DER-EOF-detection-for-openssl-3.5.7.patch
# https://github.com/python/cpython/pull/29791 (external libffi on Windows)
- patches/0028-Fix-ctypes-fielddesc-init-for-external-libffi.patch

build:
number: {{ build_number }}
Expand Down Expand Up @@ -115,6 +117,9 @@ outputs:
ignore_run_exports_from: # [unix]
# C++ only installed so CXX is defined for distutils/sysconfig.
- {{ compiler('cxx') }} # [unix]
# These two are just to get the headers needed for tk.h, but is unused
- xorg-libx11 # [linux]
- xorg-xorgproto # [linux]
# Disabled until verified to work correctly
detect_binary_files_with_prefix: true
# detect_binary_files_with_prefix: False
Expand Down Expand Up @@ -174,8 +179,6 @@ outputs:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- sed # [unix]
- {{ cdt('xorg-x11-proto-devel') }} # [linux]
- {{ cdt('libx11-devel') }} # [linux]
- make # [not win]
- libtool # [unix]
- pkg-config # [not win]
Expand All @@ -192,9 +195,13 @@ outputs:
- sqlite
- xz
- zlib
- openssl
- openssl >=3.0,<3.1 # [win]
- openssl # [not win]
- readline # [not win]
- tk
# These two are just to get the headers needed for tk.h, but is unused
- xorg-libx11 # [linux]
- xorg-xorgproto # [linux]
- ncurses # [unix]
- libffi 3.4
- ld_impl_{{ target_platform }} >=2.35.1 # [linux]
Expand Down
Loading