Skip to content

Commit 0ecd076

Browse files
committed
Bump version, update bybind and publish multiple versions
1 parent 36c58b4 commit 0ecd076

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/python-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Build and Upload Python Package
22

33
on:
4-
# release:
5-
# types: [published]
4+
release:
5+
types: [published]
66
push:
77
branches:
88
- main
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
# python-version: ["3.11", "3.12", "3.13"]
19-
python-version: ["3.13"]
18+
python-version: ["3.11", "3.12", "3.13"]
19+
# python-version: ["3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -41,8 +41,8 @@ jobs:
4141
runs-on: windows-latest
4242
strategy:
4343
matrix:
44-
# python-version: ["3.11", "3.12", "3.13"]
45-
python-version: ["3.13"]
44+
python-version: ["3.11", "3.12", "3.13"]
45+
# python-version: ["3.13"]
4646

4747
steps:
4848
- uses: actions/checkout@v4

PrjBarlib/extra/Barpy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#define PY_SILENS
1010
using namespace py;
11-
#define VERSION_INFO "1.0.5"
11+
#define VERSION_INFO "1.0.6"
1212

1313

1414
PYBIND11_MODULE(libbarpy, m)

PrjBarlib/make_xos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
premake5 gmake2 --python-include-path=/opt/homebrew/opt/python@3.13/Frameworks/Python.framework/Versions/3.13/include/python3.13 \
1+
premake5 gmake --python-include-path=/opt/homebrew/opt/python@3.13/Frameworks/Python.framework/Versions/3.13/include/python3.13 \
22
--python-lib-path=/opt/homebrew/opt/python@3.13/Frameworks/Python.framework/Versions/3.13/lib/ \
33
--python-version=3.13
44
if [[ $? -ne 0 ]] ; then

PrjBarlib/modules/pybind11

Submodule pybind11 updated 173 files

PrjBarlib/modules/python/BarcodeProject/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="ImageTopoDec",
5-
version="1.0.5",
5+
version="1.0.6",
66
description="Python wrapper for the Barcode library.",
77
author="Art A",
88
author_email="your.email@example.com",

PrjBarlib/modules/python/BarcodeProject/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ source ../.venv/bin/activate
22
python -m build
33
# stubgen -m libbarpy
44
pip uninstall -y ImageTopoDec
5-
pip install dist/ImageTopoDec-1.0.5-py3-none-any.whl
5+
pip install dist/ImageTopoDec-1.0.6-py3-none-any.whl
66
ls ../.venv/lib/python3.13/site-packages/ImageTopoDec

0 commit comments

Comments
 (0)