From eb830e22d2014e8008cf585a9d43c7842da2080f Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Fri, 10 Nov 2023 17:27:59 +0000 Subject: [PATCH] pylint workflow: cleanups --- .github/workflows/pylint.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pylint.yaml b/.github/workflows/pylint.yaml index 4aa85a57..43d297fa 100644 --- a/.github/workflows/pylint.yaml +++ b/.github/workflows/pylint.yaml @@ -1,6 +1,6 @@ name: Pylint -on: [push] +on: push jobs: test: @@ -18,16 +18,11 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Install Ubuntu dependencies - run: sudo apt-get update && sudo apt-get install curl - - name: Install Python dependencies run: | - python3 -m pip install --upgrade pip python3 -m pip install gmpy2 cryptography pynacl ecdsa aiohttp requests pexpect scrypt semantic-version - python3 -m pip install pycryptodomex pysocks pycoin ipaddress varint + python3 -m pip install pycryptodomex pysocks pycoin ipaddress varint pylint python3 -m pip install --no-deps py_ecc==1.6.0 mypy_extensions==0.4.1 monero - python3 -m pip install pylint - name: Check the code with pylint static code analyzer run: |