diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2021-07-04 01:51:46 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2021-07-07 17:27:31 -0700 |
commit | b5d2c30d26060d4a55c88c1a665b6e9d95ba1644 (patch) | |
tree | 55c1249ddb07cdaed62a4276bb8549ceebecfce8 /.github/workflows/unit_tests.yaml | |
parent | 7a9fe189e1df6aa50e6b89109f6e8464a1cd6fdf (diff) | |
download | spack-b5d2c30d26060d4a55c88c1a665b6e9d95ba1644.tar.gz spack-b5d2c30d26060d4a55c88c1a665b6e9d95ba1644.tar.bz2 spack-b5d2c30d26060d4a55c88c1a665b6e9d95ba1644.tar.xz spack-b5d2c30d26060d4a55c88c1a665b6e9d95ba1644.zip |
style: Move isort configuration to pyproject.toml
- [x] Remove flake8-import-order checks, as we only need isort for this
- [x] Clean up configuration and requirements
Diffstat (limited to '.github/workflows/unit_tests.yaml')
-rw-r--r-- | .github/workflows/unit_tests.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 434e6d04b4..a4790fc25e 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -39,7 +39,7 @@ jobs: python-version: 3.9 - name: Install Python packages run: | - pip install --upgrade pip six setuptools flake8 flake8-import-order isort mypy>=0.800 black types-six types-python-dateutil + pip install --upgrade pip six setuptools flake8 isort>=4.3.5 mypy>=0.800 black types-six types-python-dateutil - name: Setup git configuration run: | # Need this for the git tests to succeed. @@ -370,7 +370,7 @@ jobs: run: | pip install --upgrade pip six setuptools pip install --upgrade codecov coverage - pip install --upgrade flake8 flake8-import-order isort pep8-naming mypy + pip install --upgrade flake8 isort>=4.3.5 pep8-naming mypy>=0.800 pip install --upgrade python-dateutil - name: Setup Homebrew packages run: | |