Metadata-Version: 2.4
Name: edwh-quickjs-ng
Version: 0.14.0.3
Summary: Thin Python wrapper of quickjs-ng
Author-email: Ganesh Viswanathan <dev@genotrance.com>, Robin van der Noord <robin.vdn@educationwarehouse.nl>
Project-URL: Homepage, https://github.com/educationwarehouse/edwh-quickjs-ng
Project-URL: Repository, https://github.com/educationwarehouse/edwh-quickjs-ng
Keywords: quickjs,javascript,embedding
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <4.0,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# edwh-quickjs-ng

```bash
git clone --recurse-submodules git@github.com:educationwarehouse/edwh-quickjs-ng.git
cd edwh-quickjs-ng/
git -C upstream-quickjs fetch
git -C upstream-quickjs checkout v0.14.0
# edit version in pyproject.toml
git add upstream-quickjs
git add pyproject.toml
git commit -m "bump upstream-quickjs to v0.14.0"
make install
(make test)
make build
```

Note that `make publish` would only publish the wheel for your local system.
It's better to use the github action.
Releases are published automatically by GitHub Actions when you push a version
tag.

```bash
git tag v0.14.0.1
git push
git push --tags
```

This triggers `.github/workflows/build.yml`, which builds cross-platform wheels
and sdist, then publishes to PyPI.

No manual workflow dispatch or local `uv publish` is needed for normal releases.
