From fb15cce5d14a0fc602977616eec73225dc3fa4e4 Mon Sep 17 00:00:00 2001 From: "GERMANY\\SKoell" Date: Mon, 25 Aug 2025 15:58:33 +0200 Subject: [PATCH] - Simplify GitHub Actions tag pattern from [0-9]+.[0-9]+.[0-9]+* to *.*.* - Add *.whl to .gitignore to exclude build artifacts - Update README.md with static link --- .github/workflows/build_and_test.yml | 2 +- .gitignore | 1 + README.md | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 79d2ca9..f357701 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -5,7 +5,7 @@ on: # and on pull requests to main push: branches: [main] - tags: ["[0-9]+.[0-9]+.[0-9]+*"] + tags: ["*.*.*"] pull_request: branches: [ main ] types: [ opened, synchronize, reopened ] diff --git a/.gitignore b/.gitignore index e823ba3..91326aa 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,4 @@ dist/ *.cfg .env.local .env.*.local +*.whl diff --git a/README.md b/README.md index f5436e4..021bebf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![pypylon](docs/images/Pypylon_grey_RZ_400px.png "pypylon") +![pypylon](https://github.com/basler/pypylon-samples/blob/a22ab135a34e815fdde3ef3431b868617de6f712/docs/images/Pypylon_grey_RZ_400px.png "pypylon") Sample applications and jupyter notebooks using the official python wrapper for the Basler pylon Camera Software Suite. diff --git a/pyproject.toml b/pyproject.toml index f5f8540..f77fd98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -77,4 +77,4 @@ good-names = ["i", "j", "k", "ex", "Run", "_", "id"] min-similarity-lines = 4 ignore-comments = true ignore-docstrings = true -ignore-imports = true \ No newline at end of file +ignore-imports = true