diff --git a/.github/workflows/test-deploy.yaml b/.github/workflows/test-deploy.yaml index d05df4d..baed9a8 100644 --- a/.github/workflows/test-deploy.yaml +++ b/.github/workflows/test-deploy.yaml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-verion }} @@ -31,8 +31,7 @@ jobs: if: ${{ always() }} - name: lint run: | - black --check . - isort -c . + make check build: needs: test diff --git a/setup.cfg b/setup.cfg index c6aa347..c736576 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,7 @@ author_email = mathieu.pichon_ext@michelin.com package_dir = = src packages = find: -python_requires = >= 3.7 +python_requires = >= 3.8 install_requires = setuptools wheel @@ -25,6 +25,8 @@ include_package_data = True dev = black == 22.8.0 isort + autoflake + flake8 pytest pytest-cov sphinx