primer: Hypothesis now requires Python>=3.8 (GH-2602)

looks like their project dev tooling uses some newer syntax or something
This commit is contained in:
Richard Si 2021-11-11 17:52:13 -05:00 committed by GitHub
parent f80f49767c
commit f297c4644e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

7
.gitignore vendored
View File

@ -7,13 +7,18 @@ _build
docs/_static/pypi.svg docs/_static/pypi.svg
.tox .tox
__pycache__ __pycache__
# Packaging artifacts
black.egg-info black.egg-info
black.dist-info
build/ build/
dist/ dist/
pip-wheel-metadata/ pip-wheel-metadata/
.eggs
src/_black_version.py src/_black_version.py
.idea .idea
.eggs
.dmypy.json .dmypy.json
*.swp *.swp
.hypothesis/ .hypothesis/

View File

@ -77,7 +77,7 @@
"expect_formatting_changes": true, "expect_formatting_changes": true,
"git_clone_url": "https://github.com/django/django.git", "git_clone_url": "https://github.com/django/django.git",
"long_checkout": false, "long_checkout": false,
"py_versions": ["3.8", "3.9"] "py_versions": ["3.8", "3.9", "3.10"]
}, },
"flake8-bugbear": { "flake8-bugbear": {
"cli_arguments": ["--experimental-string-processing"], "cli_arguments": ["--experimental-string-processing"],
@ -91,7 +91,7 @@
"expect_formatting_changes": true, "expect_formatting_changes": true,
"git_clone_url": "https://github.com/HypothesisWorks/hypothesis.git", "git_clone_url": "https://github.com/HypothesisWorks/hypothesis.git",
"long_checkout": false, "long_checkout": false,
"py_versions": ["all"] "py_versions": ["3.8", "3.9", "3.10"]
}, },
"pandas": { "pandas": {
"cli_arguments": ["--experimental-string-processing"], "cli_arguments": ["--experimental-string-processing"],