Skip to content

Commit c6280e5

Browse files
authored
Minimum python version is now 3.7 (#25)
2 parents 79ffbe1 + 4f6eec8 commit c6280e5

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
19+
python-version: ['3.7', '3.8', '3.9', '3.10']
2020
os: [ubuntu-latest]
2121
env:
2222
PYTHON: ${{ matrix.python-version }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ repos:
2424
args:
2525
- --remove
2626
- repo: https://github.com/asottile/pyupgrade
27-
rev: v2.18.1
27+
rev: v3.2.2
2828
hooks:
2929
- id: pyupgrade
30-
args: ["--py36-plus"]
30+
args: ["--py37-plus"]
3131
- repo: https://github.com/ikamensh/flynt/
3232
rev: '0.63'
3333
hooks:

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Change log
33
**********
44

5-
0.3.2
5+
0.4.0 (unreleased)
66
#####
77

8-
* Minimum python version is now 3.6
8+
* Minimum python version is now 3.7
99
* Remove colon from "Sub-commands" title
1010

1111
0.3.1

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sphinx-argparse"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
description = "A sphinx extension that automatically documents argparse commands and options"
55
readme = "README.md"
66
repository = "https://github.com/ashb/sphinx-argparse"
@@ -15,7 +15,7 @@ packages = [
1515
]
1616

1717
[tool.poetry.dependencies]
18-
python = ">=3.6"
18+
python = ">=3.7"
1919
sphinx = ">=1.2.0"
2020
CommonMark = { version = ">=0.5.6", optional = true }
2121

@@ -29,8 +29,8 @@ pytest-cov = "^2.7"
2929
pytest-deadfixtures = "^2.2.1"
3030
flake8-colors = "^0.1.9"
3131
flake8-bugbear = "^19.8"
32-
black = {version = "^21.8b0", allow-prereleases = true, python = ">=3.6.2"}
33-
isort = {version = "^5.8.0", python = "^3.6"}
32+
black = {version = "^21.8b0", allow-prereleases = true }
33+
isort = {version = "^5.8.0" }
3434
mypy = "^0.910"
3535
types-docutils = "^0.17.0"
3636
pep8-naming = "^0.8.2"

0 commit comments

Comments
 (0)