From f617c5c7bccdaa2f0ad0255dd2b06bf300803c13 Mon Sep 17 00:00:00 2001 From: YuryHrytsuk Date: Thu, 9 Jan 2025 17:08:39 +0100 Subject: [PATCH] fixes --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d9d44e5..ff44f0d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,18 +10,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Define python - run: | - echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV - - - name: Echo python version - run: echo PYTHON_VERSION=${{ env.PYTHON_VERSION }} - - - name: Install python version - uses: gabrielfalcao/pyenv-action@v18 - with: - default: "${{ env.PYTHON_VERSION }}" - command: pip install -U pip + - name: Set up Python + uses: actions/setup-python@v5 - name: Show python version run: python --version