Skip to content

Commit

Permalink
chore: renable missing Python 3.5 support (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored Sep 10, 2021
1 parent 822ade4 commit 527b3ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["2.7", "3.6", "3.8", "3.9", "3.10-dev"]
python-version: ["2.7", "3.5", "3.6", "3.8", "3.9", "3.10-dev"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ repos:
rev: v1.17.0
hooks:
- id: setup-cfg-fmt
args: [--max-py-version=3.10]
args: [--max-py-version=3.10, --min-py3-version=3.5]

- repo: https://github.com/asottile/pyupgrade
rev: v2.25.0
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Expand All @@ -45,7 +46,7 @@ install_requires =
importlib_resources>=2.0;python_version<"3.9"
typing>=3.7;python_version<"3.5"
typing_extensions;python_version<"3.8"
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
include_package_data = True
package_dir =
=src
Expand Down

0 comments on commit 527b3ab

Please sign in to comment.