From cf8d1454707d6f9c87e277f1c91c8ee599c5f177 Mon Sep 17 00:00:00 2001 From: devrimcavusoglu Date: Mon, 14 Oct 2024 16:30:45 +0300 Subject: [PATCH] fall back to pip. --- .github/workflows/check_format.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check_format.yml b/.github/workflows/check_format.yml index a753ea8..68bfdeb 100644 --- a/.github/workflows/check_format.yml +++ b/.github/workflows/check_format.yml @@ -49,13 +49,11 @@ jobs: key: ${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/setup.py')}} restore-keys: ${{ matrix.os }}-${{ matrix.python-version }}- - - name: Conda env create + - name: Update pip run: | - conda env create -f environment.yml && conda init bash - + python -m pip install --upgrade pip + pip install black==21.7b0 click==8.0.4 flake8==3.9.2 isort==5.9.2 - name: Lint with flake8 and black run: | - source ~/.bashrc - conda activate disgem python -m scripts.run_code_style check