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

Update peewee from 3.17.3 to 3.17.4 [emscripten-3.1.73] #1595

Merged
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 conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ capnproto:
ccr:
- 1.3
cffi:
- 1.15.1
- 1.17.1
cfitsio:
- 4.0.0
cmake:
Expand Down
11 changes: 10 additions & 1 deletion recipes/recipes_emscripten/peewee/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
#!/bin/bash
${PYTHON} -m pip install .

LDFLAGS="$LDFLAGS $EM_FORGE_SIDE_MODULE_LDFLAGS"
CFLAGS="$CFLAGS $EM_FORGE_SIDE_MODULE_CFLAGS"
LDFLAGS="$LDFLAGS -L$PREFIX/lib"

export LDFLAGS
export CFLAGS


${PYTHON} -m pip install .
6 changes: 4 additions & 2 deletions recipes/recipes_emscripten/peewee/recipe.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
context:
name: peewee
version: 3.17.3
version: 3.17.4

package:
name: ${{ name }}
Expand All @@ -9,7 +9,7 @@ package:
source:
url: https://pypi.io/packages/source/${{ name[0] }}/${{ name }}/${{ name }}-${{
version }}.tar.gz
sha256: ef15f90b628e41a584be8306cdc3243c51f73ce88b06154d9572f6d0284a0169
sha256: 530c545739870699d1dd2a3a3c749951f94200315f27df2be5474c2e87ae9f94

build:
number: 0
Expand All @@ -19,9 +19,11 @@ requirements:
- ${{ compiler("c") }}
- cross-python_emscripten-wasm32
- pip
- peewee
host:
- python >=3.7
- cffi
- sqlite
run:
- python >=3.7
- cffi
Expand Down
Loading