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

release 0.1.2 #2

Merged
merged 2 commits into from
Nov 25, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
CIBW_ARCHS_WINDOWS: auto ARM64
CIBW_TEST_SKIP: "*macosx* *win* *aarch64 cp31* pp* *musllinux*"
CIBW_ENVIRONMENT: "PIP_ONLY_BINARY=:all:"
# CIBW_BEFORE_BUILD: "pip install --prefer-binary fire numpy opencv-python"

- name: Verify clean directory
run: git diff --exit-code
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ pip install pybind11-pixelmatch
diff image

```
pip install fire # for CLI
python3 -m pybind11_pixelmatch --help
python3 -m pybind11_pixelmatch data/pic1.png data/pic2.png diff_output.png
```
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ build-backend = "scikit_build_core.build"

[project]
name = "pybind11_pixelmatch"
version = "0.1.1"
version = "0.1.2"
description="A C++17 port of the JavaScript pixelmatch library (with python binding), providing a small pixel-level image comparison library."
readme = "README.md"
authors = [
{ name = "district10", email = "dvorak4tzx@gmail.com" },
]
homepage = "https://github.com/cubao/pybind11_pixelmatch"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -23,7 +24,6 @@ classifiers = [
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fire",
"numpy",
"opencv-python",
]
Expand Down
Loading