Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python v3.13.2 #774

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{% set version = "3.13.1" %}
{% set version = "3.13.2" %}
{% 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 = 5 %}
{% 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: 80c16badb94ffe235280d4d9a099b8bc
md5: 4c2d9202ab4db02c9d0999b14655dfe5
patches:
- patches/0001-Win32-Change-FD_SETSIZE-from-512-to-2048.patch
- patches/0002-Win32-Do-not-download-externals.patch
Expand Down Expand Up @@ -328,7 +328,7 @@ outputs:
build:
noarch: generic
{% if freethreading != "yes" %}
skip: True
skip: true
{% endif %}
requirements:
- cpython {{ version }}.*
Expand All @@ -338,14 +338,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