Skip to content

Commit

Permalink
Remove support for Python 3.6 (#256)
Browse files Browse the repository at this point in the history
Co-authored-by: Jash Parekh <[email protected]>
  • Loading branch information
jashparekh and Jash Parekh authored Feb 5, 2022
1 parent 9d476f6 commit 9d54316
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
steps:
- name: Check out code
uses: actions/[email protected]
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
steps:
- name: Check out code
uses: actions/[email protected]
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -21,7 +20,7 @@ classifiers =

[options]

python_requires = >=3.6
python_requires = >=3.7
install_requires =
dataclasses~=0.8; python_version < '3.7'
typing_extensions~=3.7; python_version < '3.8'
Expand Down
2 changes: 1 addition & 1 deletion util/mkdocstrings_patch_type_aliases/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=[
"mkdocs~=1.0",
],
Expand Down

0 comments on commit 9d54316

Please sign in to comment.