From 19b178541669c4dd65db2df0015324e6011c4e2d Mon Sep 17 00:00:00 2001 From: luhuadong Date: Thu, 24 Nov 2022 19:19:10 +0800 Subject: [PATCH 1/2] [Typo] fix 2 typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c8872e2..79909ea 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ SiPMProperties myProperties; // Edit some parameters myProperties.setDcr(250e3); // Using proper setter -myProperties.setPropery("Xt",0.03); // Using parameter name -std::cout< SiPM Properties <=== // Address: 0x7f2cf11ea018 From ff6f4ddf3f5cdd1df0841575f80f87055d15d69f Mon Sep 17 00:00:00 2001 From: Edoardo Date: Mon, 23 Oct 2023 18:04:27 +0200 Subject: [PATCH 2/2] [Actions] Update deployonTestPyPi.yml --- .github/workflows/deployonTestPyPi.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deployonTestPyPi.yml b/.github/workflows/deployonTestPyPi.yml index aac7cfa..d2a4a78 100644 --- a/.github/workflows/deployonTestPyPi.yml +++ b/.github/workflows/deployonTestPyPi.yml @@ -18,22 +18,22 @@ jobs: steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 name: Install Python with: python-version: 3.9 - name: Build wheels - uses: pypa/cibuildwheel@v2.5.0 + uses: pypa/cibuildwheel@v2.16.2 env: CIBW_SKIP: "*-manylinux_i686" CIBW_BUILD: cp3* pp3* CIBW_BEFORE_BUILD: pip install -U pip && pip install pybind11 CIBW_ARCHS_MACOS: x86_64 universal2 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl @@ -49,9 +49,9 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 name: Install Python with: python-version: 3.9 @@ -62,6 +62,6 @@ jobs: - name: Build sdist run: python setup.py sdist - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: path: dist/*.tar.gz