Skip to content

Commit

Permalink
Merge pull request #2020 from barrelful/feature/remove-python36
Browse files Browse the repository at this point in the history
Remove Python 3.6
  • Loading branch information
staticdev committed Dec 11, 2022
2 parents b4d285c + 32f1f28 commit 91a77c9
Show file tree
Hide file tree
Showing 10 changed files with 291 additions and 221 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -8,8 +8,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, ubuntu-18.04, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -23,7 +23,7 @@ isort is a Python utility / library to sort imports alphabetically, and
automatically separated into sections and by type. It provides a command line
utility, Python library and [plugins for various
editors](https://github.com/pycqa/isort/wiki/isort-Plugins) to
quickly sort all your imports. It requires Python 3.6+ to run but
quickly sort all your imports. It requires Python 3.7+ to run but
supports formatting Python 2 code too.

- [Try isort now from your browser!](https://pycqa.github.io/isort/docs/quick_start/0.-try.html)
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/black_compatibility.md
Expand Up @@ -33,9 +33,9 @@ A demo of how this would look like in your _.travis.yml_
```yaml
language: python
python:
- "3.6"
- "3.7"
- "3.9"
- "3.8"
- "3.7"

install:
- pip install -r requirements-dev.txt
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/1.-contributing-guide.md
Expand Up @@ -14,7 +14,7 @@ Account Requirements:

Base System Requirements:

- Python3.6+
- Python3.7+
- poetry
- bash or a bash compatible shell (should be auto-installed on Linux / Mac)
- WSL users running Ubuntu may need to install Python's venv module even after installing Python.
Expand Down
2 changes: 1 addition & 1 deletion example_isort_formatting_plugin/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 91a77c9

Please sign in to comment.