Skip to content

Commit

Permalink
primer: Hypothesis now requires Python>=3.8 (GH-2602)
Browse files Browse the repository at this point in the history
looks like their project dev tooling uses some newer syntax or something
  • Loading branch information
ichard26 authored and JelleZijlstra committed Nov 16, 2021
1 parent b90f0db commit 5a69ccc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Expand Up @@ -7,13 +7,18 @@ _build
docs/_static/pypi.svg
.tox
__pycache__

# Packaging artifacts
black.egg-info
black.dist-info
build/
dist/
pip-wheel-metadata/
.eggs

src/_black_version.py
.idea
.eggs

.dmypy.json
*.swp
.hypothesis/
Expand Down
4 changes: 2 additions & 2 deletions src/black_primer/primer.json
Expand Up @@ -77,7 +77,7 @@
"expect_formatting_changes": true,
"git_clone_url": "https://github.com/django/django.git",
"long_checkout": false,
"py_versions": ["3.8", "3.9"]
"py_versions": ["3.8", "3.9", "3.10"]
},
"flake8-bugbear": {
"cli_arguments": ["--experimental-string-processing"],
Expand All @@ -91,7 +91,7 @@
"expect_formatting_changes": true,
"git_clone_url": "https://github.com/HypothesisWorks/hypothesis.git",
"long_checkout": false,
"py_versions": ["all"]
"py_versions": ["3.8", "3.9", "3.10"]
},
"pandas": {
"cli_arguments": ["--experimental-string-processing"],
Expand Down

0 comments on commit 5a69ccc

Please sign in to comment.