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

Test the rice #6

Closed
wants to merge 7 commits into from
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
6 changes: 3 additions & 3 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ platforms = ["osx-arm64", "osx-64", "linux-64"]
############################################
[feature.feature_rattler_build]
[feature.feature_rattler_build.dependencies]
rattler-build = ">= 0.18.2"
python = "3.11.*"
rattler-build = ">=0.18.2"
python = "3.12.*"
typer = "*"
curl = "*"

Expand Down Expand Up @@ -126,7 +126,7 @@ cmd = [
############################################
[feature.feature_documentation]
[feature.feature_documentation.dependencies]
python = "3.11.*"
python = "3.12.*"
mkdocs = ">=1.6.0"
mkdocs-material = ">=9.5.2"
pip = "*"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
#!/bin/bash

set -ex

OLD_PYTHON=$PYTHON
echo ">>> OLD_PYTHON=$OLD_PYTHON"
echo ">>> Python version:"
$OLD_PYTHON --version

unset PYTHON
MYPYTHON=$BUILD_PREFIX/bin/python
PY_VER_MAJOR_MINOR=$($MYPYTHON -c 'import sys; print(str(sys.version_info[0])+"."+str(sys.version_info[1]))')
echo ">>> MYPYTHON=$MYPYTHON"

export EMSDK_PYTHON=$BUILD_PREFIX/bin/python3

Expand All @@ -12,8 +20,6 @@ cp $BUILD_PREFIX/bin/python3 $PREFIX/bin





# this will activate emscripten in case it has not yet been activated
source $CONDA_PREFIX/etc/conda/activate.d/emscripten_emscripten-wasm32_activate.sh

Expand Down
4 changes: 2 additions & 2 deletions recipes/recipes/cross-python_emscripten-wasm32/recipe.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
context:
name: cross-python_emscripten-wasm32
version: "3.11.3"
version: "3.12.0"

package:
name: ${{ name|lower }}
version: ${{ version }}

build:
number: 10
number: 0

requirements:

Expand Down
32 changes: 0 additions & 32 deletions recipes/recipes/cross-python_emscripten-wasm32/recipe_legacy.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion recipes/recipes_emscripten/rice/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source:
sha256: fb34402bf0f79a900fa02bd7396a35d661165f0975a93aee902e89e59adf045c

build:
number: 0
number: 1

requirements:
build:
Expand Down
Loading