diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3cbe46d..82b8b78 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,21 +20,27 @@ jobs: task: make -f Makefile fmt-travis - dependencies: yamllint task: make -f Makefile yamllint - - dependencies: pylint python3-hypothesis python3-justbases + - dependencies: > + pylint + python3-hypothesis + python3-justbases + python3-setuptools task: PYTHONPATH=./src make -f Makefile lint - dependencies: > python3-hypothesis python3-justbases + python3-setuptools task: PYTHONPATH=./src make -f Makefile test - dependencies: > python3-coverage python3-hypothesis python3-justbases + python3-setuptools task: PYTHONPATH=./src make -f Makefile coverage - dependencies: python python3-build twine task: make -f Makefile package runs-on: ubuntu-latest - container: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT + container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT steps: - uses: actions/checkout@v4 - name: Install dependencies diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml deleted file mode 100644 index 098b60f..0000000 --- a/.github/workflows/weekly.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: justbytes weekly - -# yamllint disable-line rule:truthy -on: - schedule: - - cron: 20 3 * * 3 - workflow_dispatch: - -jobs: - next-fedora-python-checks: - strategy: - matrix: - include: - - dependencies: black python3-isort - task: make -f Makefile fmt-travis - - dependencies: yamllint - task: make -f Makefile yamllint - - dependencies: pylint python3-hypothesis python3-justbases - task: PYTHONPATH=./src make -f Makefile lint - runs-on: ubuntu-latest - container: fedora:41 # NEXT DEVELOPMENT ENVIRONMENT - steps: - - uses: actions/checkout@v4 - - name: Install dependencies - run: > - dnf install -y - make - ${{ matrix.dependencies }} - - name: ${{ matrix.task }} - run: ${{ matrix.task }} diff --git a/src/justbytes/_config.py b/src/justbytes/_config.py index 58978ea..e8738a1 100644 --- a/src/justbytes/_config.py +++ b/src/justbytes/_config.py @@ -111,7 +111,7 @@ class ValueConfig: ] ) - def __init__( + def __init__( # pylint: disable=too-many-positional-arguments self, max_places=2, min_value=1,