diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat index 283e14388..297498b12 100755 --- a/.scripts/run_win_build.bat +++ b/.scripts/run_win_build.bat @@ -25,7 +25,7 @@ set "MICROMAMBA_EXE=%MICROMAMBA_TMPDIR%\micromamba.exe" echo Downloading micromamba %MICROMAMBA_VERSION% if not exist "%MICROMAMBA_TMPDIR%" mkdir "%MICROMAMBA_TMPDIR%" -certutil -urlcache -split -f "%MICROMAMBA_URL%" "%MICROMAMBA_EXE%" +powershell -ExecutionPolicy Bypass -Command "(New-Object Net.WebClient).DownloadFile('%MICROMAMBA_URL%', '%MICROMAMBA_EXE%')" if !errorlevel! neq 0 exit /b !errorlevel! echo Creating environment diff --git a/README.md b/README.md index 85b4bd925..7ac556954 100644 --- a/README.md +++ b/README.md @@ -235,14 +235,14 @@ Current release info Installing python ================= -Installing `python` from the `conda-forge/label/python_debug` channel can be achieved by adding `conda-forge/label/python_debug` to your channels with: +Installing `python` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with: ``` -conda config --add channels conda-forge/label/python_debug +conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge/label/python_debug` channel has been enabled, `cpython, libpython-static, python, python-freethreading, python-gil, python-jit` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `cpython, libpython-static, python, python-freethreading, python-gil, python-jit` can be installed with `conda`: ``` conda install cpython libpython-static python python-freethreading python-gil python-jit @@ -257,26 +257,26 @@ mamba install cpython libpython-static python python-freethreading python-gil py It is possible to list all of the versions of `cpython` available on your platform with `conda`: ``` -conda search cpython --channel conda-forge/label/python_debug +conda search cpython --channel conda-forge ``` or with `mamba`: ``` -mamba search cpython --channel conda-forge/label/python_debug +mamba search cpython --channel conda-forge ``` Alternatively, `mamba repoquery` may provide more information: ``` # Search all versions available on your platform: -mamba repoquery search cpython --channel conda-forge/label/python_debug +mamba repoquery search cpython --channel conda-forge # List packages depending on `cpython`: -mamba repoquery whoneeds cpython --channel conda-forge/label/python_debug +mamba repoquery whoneeds cpython --channel conda-forge # List dependencies of `cpython`: -mamba repoquery depends cpython --channel conda-forge/label/python_debug +mamba repoquery depends cpython --channel conda-forge ``` diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 170cd4a2d..75335f9ab 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -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' %} @@ -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 @@ -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] @@ -173,7 +173,7 @@ outputs: - expat # [build_platform != target_platform] host: - bzip2 - - sqlite + - libsqlite - liblzma-devel - zlib - openssl @@ -329,7 +329,7 @@ outputs: build: noarch: generic {% if freethreading != "yes" %} - skip: True + skip: true {% endif %} requirements: - cpython {{ version }}.* @@ -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