From e54588f8ff16eccd40660e0854fe4c10a20e5819 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 09:14:35 +0000 Subject: [PATCH 1/2] chore: bump epam/ai-dial-ci from 1.10.2 to 1.11.0 Bumps [epam/ai-dial-ci](https://github.com/epam/ai-dial-ci) from 1.10.2 to 1.11.0. - [Release notes](https://github.com/epam/ai-dial-ci/releases) - [Commits](https://github.com/epam/ai-dial-ci/compare/1.10.2...1.11.0) --- updated-dependencies: - dependency-name: epam/ai-dial-ci dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/pr-title-check.yml | 2 +- .github/workflows/pr.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-title-check.yml b/.github/workflows/pr-title-check.yml index b9e3daf..4d99ccf 100644 --- a/.github/workflows/pr-title-check.yml +++ b/.github/workflows/pr-title-check.yml @@ -9,6 +9,6 @@ on: jobs: pr-title-check: - uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.10.2 + uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.11.0 secrets: ACTIONS_BOT_TOKEN: ${{ secrets.ACTIONS_BOT_TOKEN }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 4832dad..777aa56 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -6,7 +6,7 @@ on: jobs: run_tests: - uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@1.10.2 + uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@1.11.0 secrets: inherit with: python_version: 3.8 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e6fab0..bd5f53a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: jobs: release: - uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@1.10.2 + uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@1.11.0 secrets: inherit with: python_version: 3.8 From 5c6ba346ddecdc43b3c5b584b34925604d2b5fbc Mon Sep 17 00:00:00 2001 From: Anton Dubovik Date: Thu, 16 Jan 2025 18:03:38 +0000 Subject: [PATCH 2/2] fix: VENV -> VENV_DIR --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index eb98b08..cd85160 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -VENV ?= .venv -POETRY ?= $(VENV)/bin/poetry +VENV_DIR ?= .venv +POETRY ?= $(VENV_DIR)/bin/poetry POETRY_VERSION ?= 1.8.5 .PHONY: all init_env install clean lint format test spell_check @@ -7,8 +7,8 @@ POETRY_VERSION ?= 1.8.5 all: build init_env: - python -m venv $(VENV) - $(VENV)/bin/pip install poetry==$(POETRY_VERSION) --quiet + python -m venv $(VENV_DIR) + $(VENV_DIR)/bin/pip install poetry==$(POETRY_VERSION) --quiet install: init_env $(POETRY) install @@ -36,7 +36,7 @@ coverage: install $(POETRY) run nox -s coverage publish: build - $(POETRY) publish -u __token__ -p ${PYPI_TOKEN} --skip-existing + $(POETRY) publish -u __token__ -p $(PYPI_TOKEN) --skip-existing help: @echo '===================='