From 46c4d4352fe0c9e4e95913a5d6894ff9a7cad8b2 Mon Sep 17 00:00:00 2001 From: Shane McGovern Date: Sun, 27 Oct 2024 14:23:48 -0700 Subject: [PATCH 1/2] fix: ...3.11.3... not found in pytest step of validation job --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 9ba2f5ae..d44b96a9 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/python:3 +FROM mcr.microsoft.com/devcontainers/python:3.10 RUN python -m pip install --upgrade pip \ && python -m pip install 'flit>=3.8.0' From 0979bdd743d8b4adee03bec2bf92cb44b06d13c0 Mon Sep 17 00:00:00 2001 From: Shane McGovern Date: Sun, 27 Oct 2024 14:31:12 -0700 Subject: [PATCH 2/2] fix: resolving 3.11.3 instead of 3.11.10 --- .github/workflows/CI.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index eb8ae3ed..a71603ea 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -5,17 +5,18 @@ on: pull_request: branches: [ main ] release: - types: [created] + types: [created] workflow_dispatch: jobs: validation: - uses: microsoft/action-python/.github/workflows/validation.yml@0.6.4 + # uses: microsoft/action-python/.github/workflows/validation.yml@0.6.4 + uses: microsoft/action-python/.github/workflows/validation.yml@0.7.3 with: workdir: '.' - publish: - uses: microsoft/action-python/.github/workflows/publish.yml@0.6.4 - secrets: - PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }} + # publish: + # uses: microsoft/action-python/.github/workflows/publish.yml@0.6.4 + # secrets: + # PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + # TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}