Skip to content

Commit c98a334

Browse files
committed
Drop Python 3.6
1 parent ef0669e commit c98a334

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
python-version: [3.6, 3.7, 3.8, 3.9, "pypy-3.6", "pypy-3.7"]
29+
python-version: [3.7, 3.8, 3.9, "pypy-3.7"]
3030
fail-fast: false
3131
steps:
3232
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
- reduced filtering for object keys (#88)
55
- updated to `jsonschema >= 4.0.0` (#89);
66
though support for `Draft 2019-09` and `2020-12` will take longer
7+
- requires Python 3.7+, a few months ahead of the
8+
[3.6 end of life date](https://www.python.org/dev/peps/pep-0494/#lifespan)
79

810
#### 0.20.1 - 2021-06-03
911
- improved handling for fractional `multipleOf` values

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,14 @@ def local_file(name: str) -> str:
3131
description="Generate test data from JSON schemata with Hypothesis",
3232
zip_safe=False,
3333
install_requires=["hypothesis>=5.3.0", "jsonschema>=4.0.0"],
34-
python_requires=">=3.6",
34+
python_requires=">=3.7",
3535
classifiers=[
3636
"Development Status :: 4 - Beta",
3737
"Framework :: Hypothesis",
3838
"Intended Audience :: Developers",
3939
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
4040
"Programming Language :: Python",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.6",
4342
"Programming Language :: Python :: 3.7",
4443
"Programming Language :: Python :: 3.8",
4544
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)