Skip to content

Commit 356fd38

Browse files
committed
chore: Drop Python 3.6 support
1 parent 26f4f88 commit 356fd38

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
strategy:
6969
matrix:
7070
os: [ubuntu-20.04]
71-
python: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
71+
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
7272

7373
name: ${{ matrix.os }}/tests_${{ matrix.python }}
7474
runs-on: ${{ matrix.os }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased] - TBD
44

5+
### Removed
6+
7+
- Python 3.6 support.
8+
59
## [0.9.2] - 2022-11-07
610

711
### Added

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ classifiers = [
1111
"License :: OSI Approved :: MIT License",
1212
"Operating System :: OS Independent",
1313
"Programming Language :: Python :: 3 :: Only",
14-
"Programming Language :: Python :: 3.6",
1514
"Programming Language :: Python :: 3.7",
1615
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
@@ -27,7 +26,7 @@ license = "MIT"
2726
include = ["src/hypothesis_graphql/py.typed"]
2827

2928
[tool.poetry.dependencies]
30-
python = "^3.6"
29+
python = "^3.7"
3130
hypothesis = ">=5.8.0,<7.0"
3231
graphql-core = ">=3.1.0,<3.3.0"
3332
attrs = ">20.3.0,<=22.1.0"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
isolated_build = true
3-
envlist = py{36,37,38,39,310,311},coverage-report
3+
envlist = py{37,38,39,310,311},coverage-report
44

55
[testenv]
66
deps =
@@ -14,7 +14,7 @@ description = Report coverage over all measured test runs.
1414
basepython = python3.7
1515
deps = coverage
1616
skip_install = true
17-
depends = py{36,37,38,39,310,311}
17+
depends = py{37,38,39,310,311}
1818
commands =
1919
coverage combine
2020
coverage report

0 commit comments

Comments
 (0)