Skip to content

Commit

Permalink
Minimum python version is now 3.7 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashb committed Nov 10, 2022
2 parents 79ffbe1 + 4f6eec8 commit c6280e5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10']
os: [ubuntu-latest]
env:
PYTHON: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ repos:
args:
- --remove
- repo: https://github.com/asottile/pyupgrade
rev: v2.18.1
rev: v3.2.2
hooks:
- id: pyupgrade
args: ["--py36-plus"]
args: ["--py37-plus"]
- repo: https://github.com/ikamensh/flynt/
rev: '0.63'
hooks:
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Change log
**********

0.3.2
0.4.0 (unreleased)
#####

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

0.3.1
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sphinx-argparse"
version = "0.3.2"
version = "0.4.0"
description = "A sphinx extension that automatically documents argparse commands and options"
readme = "README.md"
repository = "https://github.com/ashb/sphinx-argparse"
Expand All @@ -15,7 +15,7 @@ packages = [
]

[tool.poetry.dependencies]
python = ">=3.6"
python = ">=3.7"
sphinx = ">=1.2.0"
CommonMark = { version = ">=0.5.6", optional = true }

Expand All @@ -29,8 +29,8 @@ pytest-cov = "^2.7"
pytest-deadfixtures = "^2.2.1"
flake8-colors = "^0.1.9"
flake8-bugbear = "^19.8"
black = {version = "^21.8b0", allow-prereleases = true, python = ">=3.6.2"}
isort = {version = "^5.8.0", python = "^3.6"}
black = {version = "^21.8b0", allow-prereleases = true }
isort = {version = "^5.8.0" }
mypy = "^0.910"
types-docutils = "^0.17.0"
pep8-naming = "^0.8.2"
Expand Down

0 comments on commit c6280e5

Please sign in to comment.