Skip to content
Closed
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: 1 addition & 1 deletion .scripts/run_win_build.bat

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

16 changes: 8 additions & 8 deletions README.md

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

16 changes: 8 additions & 8 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{% set version = "3.13.3" %}
{% set version = "3.13.4" %}
{% set dev = "" %}
{% set dev_ = "" %}
{% 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 = 0 %}

# this makes the linter happy
{% set channel_targets = channel_targets or 'conda-forge main' %}
Expand Down Expand Up @@ -46,7 +46,7 @@ package:
source:
- url: https://www.python.org/ftp/python/{{ version }}/Python-{{ version }}{{ dev }}.tar.xz
# md5 from: https://www.python.org/downloads/release/python-{{ ver3nd }}{{ dev }}/
md5: 8bb5f0b8c9d9d7b87d7d98510e8d58e5
md5: 2e2a8eb2e1be50049dc4248d99a52f89
patches:
- patches/0001-Win32-Change-FD_SETSIZE-from-512-to-2048.patch
- patches/0002-Win32-Do-not-download-externals.patch
Expand Down Expand Up @@ -160,7 +160,7 @@ outputs:
- clang 18.* # [win]
- llvm-tools 18.* # [win]
- bzip2 # [build_platform != target_platform]
- sqlite # [build_platform != target_platform]
- libsqlite # [build_platform != target_platform]
- liblzma-devel # [build_platform != target_platform]
- zlib # [build_platform != target_platform]
- openssl # [build_platform != target_platform]
Expand All @@ -173,7 +173,7 @@ outputs:
- expat # [build_platform != target_platform]
host:
- bzip2
- sqlite
- libsqlite
- liblzma-devel
- zlib
- openssl
Expand Down Expand Up @@ -329,7 +329,7 @@ outputs:
build:
noarch: generic
{% if freethreading != "yes" %}
skip: True
skip: true
{% endif %}
requirements:
- cpython {{ version }}.*
Expand All @@ -339,14 +339,14 @@ outputs:
build:
noarch: generic
{% if freethreading == "yes" %}
skip: True
skip: true
{% endif %}
requirements:
- cpython {{ version }}.*
- python_abi * *_{{ abi_tag }}

- name: python-jit
script: install_jit_activation.sh # [not win]
script: install_jit_activation.sh # [not win]
script: install_jit_activation.bat # [win]
build:
noarch: generic
Expand Down
Loading