chore: test with Python 3.10 (#856)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
pre-commit-ci[bot]
2021-10-07 23:10:56 -04:00
committed by GitHub
co-authored by pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
parent edcb908bf8
commit 79d35f7eeb
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ['3.7']
python_version: ['3.10']
timeout-minutes: 180
steps:
- uses: actions/checkout@v2
+3 -4
View File
@@ -14,7 +14,7 @@ repos:
- id: trailing-whitespace
- repo: https://github.com/asottile/pyupgrade
rev: v2.28.0
rev: v2.29.0
hooks:
- id: pyupgrade
name: PyUpgrade 3.6+
@@ -43,13 +43,12 @@ repos:
- id: black
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.17.0
rev: v1.18.0
hooks:
- id: setup-cfg-fmt
stages: [manual]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
rev: v0.910-1
hooks:
- id: mypy
exclude: ^(bin|cibuildwheel/resources|docs)/.*py$
+6 -5
View File
@@ -7,7 +7,7 @@ long_description_content_type = text/markdown
url = https://github.com/pypa/cibuildwheel
author = Joe Rickerby
author_email = joerick@mac.com
license = BSD
license = BSD-2-Clause
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
@@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Build Tools
keywords = ci,wheel,packaging,pypi,travis,appveyor,macos,linux,windows
@@ -40,6 +41,10 @@ python_requires = >=3.6
include_package_data = True
zip_safe = False
[options.packages.find]
include =
cibuildwheel
[options.entry_points]
console_scripts =
cibuildwheel = cibuildwheel.__main__:main
@@ -47,10 +52,6 @@ console_scripts =
[options.package_data]
cibuildwheel = resources/*
[options.packages.find]
include =
cibuildwheel
[flake8]
ignore = E501,W503,E741,E226,B950,E203
select = C,E,F,W,B,B9