From 235ebaa4fc6eacaaa9cb5b942ed37bd3dd77a873 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 20:56:22 +0000 Subject: [PATCH] chore(deps): update build requirement from <0.10.0 to <1.3.0 Updates the requirements on [build](https://github.com/pypa/build) to permit the latest version. - [Release notes](https://github.com/pypa/build/releases) - [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pypa/build/compare/0.0.1...1.2.2) --- updated-dependencies: - dependency-name: build dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/create_release.yaml | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3f16abb..6f0a4c41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip setuptools wheel "build<0.10.0" python-semantic-release + python -m pip install --upgrade pip setuptools wheel "build<1.3.0" python-semantic-release - name: Python Semantic Release id: release diff --git a/.github/workflows/create_release.yaml b/.github/workflows/create_release.yaml index 795a3b66..d1c8d85a 100644 --- a/.github/workflows/create_release.yaml +++ b/.github/workflows/create_release.yaml @@ -25,7 +25,7 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip setuptools wheel "build<0.10.0" python-semantic-release + python -m pip install --upgrade pip setuptools wheel "build<1.3.0" python-semantic-release - name: Python Semantic Release id: release diff --git a/pyproject.toml b/pyproject.toml index c2fa66e8..31a16da8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ dev = [ ] package = [ - "build<0.10.0", + "build<1.3.0", "python-semantic-release", "setuptools", "wheel", @@ -125,7 +125,7 @@ build_command = """ python -m venv .venv source .venv/bin/activate pip install -U pip - python -m pip install "build<0.10.0" python-semantic-release setuptools wheel + python -m pip install "build<1.3.0" python-semantic-release setuptools wheel python -m build . """