Michael Weinold

Results 33 issues of Michael Weinold

See also: - https://github.com/pyodide/pyodide/issues/4994

I would like to [add the `rapidfuzz` package](https://github.com/emscripten-forge/recipes/issues/1270) to emscripten-forge. One of [the original build requirements is `scikit-build`](https://github.com/conda-forge/rapidfuzz-feedstock/blob/9f885d1bd818dcafdaf4455736dda7e31800294e/recipe/meta.yaml#L29): ```yaml requirements: build: - python # [build_platform != target_platform] - cross-python_{{ target_platform...

Unfortunately, a simple `sqlite3` test of this kind: ```python import sqlite3 con = sqlite3.connect("tutorial.db") cur = con.cursor() cur.execute("CREATE TABLE movie(title, year, score)") res = cur.execute("SELECT name FROM sqlite_master") ``` still...

This fixes: - https://github.com/brightway-lca/brightway2-io/issues/269

bug
minor

```python await micropip.install('bw2io==0.9.dev33', keep_going = True) import bw2io ``` works, but with the warning: ``` /lib/python3.12/site-packages/bw2io/strategies/simapro.py:608: SyntaxWarning: invalid escape sequence '\d' formula = re.sub("\d,\d", replace_comma, formula) /lib/python3.12/site-packages/bw2io/importers/exiobase3_hybrid.py:55: SyntaxWarning: invalid escape...

### Description This resolves: - https://github.com/pyodide/pyodide/issues/5023 ### Checklists - [x] Add a [CHANGELOG](https://github.com/pyodide/pyodide/blob/main/docs/project/changelog.md) entry - [x] Add / update tests - [x] Add new / update outdated documentation (no changes...

## 🐛 Bug Pyodide [has shipped with Python 3.12 from 0.26.0](https://pyodide.org/en/stable/project/changelog.html#version-0-26-0).\ It also [still ships with `tqdm` 4.66.2](https://pyodide.org/en/stable/usage/packages-in-pyodide.html). However, this version of `tqdm` will throw an error when used with...

bug

## 🐍 Package Request - Package Name and Version : `rapidfuzz` / latest - Package URL : [GitHub](https://github.com/rapidfuzz/RapidFuzz), [PyPi](https://pypi.org/project/rapidfuzz/#description) - Package Dependencies that needs to be resolved first: [none](https://github.com/conda-forge/rapidfuzz-feedstock/blob/main/recipe/meta.yaml) ##...

new package request

Our sphinx build on readthedocs.org is failing on an error likely related to `sphinx-autoapi`. Surprisingly, this is even though we had pinned the package version in the environment recipe: ```yaml...