Skip to content

Commit

Permalink
build: Bump Python dev version to 3.9.2 (#160)
Browse files Browse the repository at this point in the history
As well as bump `aiohttp`, pre-commit hooks and some other deps.
  • Loading branch information
playpauseandstop committed Mar 12, 2021
1 parent 17cd9ee commit e23ae82
Show file tree
Hide file tree
Showing 8 changed files with 330 additions and 251 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ on:
branches: ["master"]

env:
BADABUMP_VERSION: "20.1.0"
COMMITIZEN_VERSION: "2.13.0"
COVERALLS_VERSION: "2.2.0"
DEV_PYTHON_VERSION: "3.9.1"
POETRY_VERSION: "1.1.4"
TOX_GH_ACTIONS_VERSION: "2.3.0"
TOX_VERSION: "3.20.1"
BADABUMP_VERSION: "21.1.0"
COMMITIZEN_VERSION: "2.16.0"
COVERALLS_VERSION: "3.0.1"
DEV_PYTHON_VERSION: "3.9.2"
POETRY_VERSION: "1.1.5"
TOX_GH_ACTIONS_VERSION: "2.4.0"
TOX_VERSION: "3.23.0"
TWINE_VERSION: "3.3.0"

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:
default: ""

env:
BADABUMP_VERSION: "20.1.0"
PYTHON_VERSION: "3.9.1"
BADABUMP_VERSION: "21.1.0"
PYTHON_VERSION: "3.9.2"
PYTHONUNBUFFERED: "1"

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
types: ["closed"]

env:
BADABUMP_VERSION: "20.1.0"
PYTHON_VERSION: "3.9.1"
BADABUMP_VERSION: "21.1.0"
PYTHON_VERSION: "3.9.2"
PYTHONUNBUFFERED: "1"

jobs:
Expand Down
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default_language_version:
minimum_pre_commit_version: "1.17.0"
repos:
- repo: "https://github.com/commitizen-tools/commitizen"
rev: "v2.4.2"
rev: "v2.16.0"
hooks:
- id: "commitizen"
# By default commitizen using `python3` instead `python` language, so
Expand All @@ -22,7 +22,7 @@ repos:
exclude: ^docs/.*$

- repo: "https://github.com/asottile/blacken-docs"
rev: "v1.8.0"
rev: "v1.10.0"
hooks:
- id: "blacken-docs"
name: "Format docs (blacken-docs)"
Expand All @@ -31,7 +31,7 @@ repos:
- "black==20.8b1"

- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v3.3.0"
rev: "v3.4.0"
hooks:
- id: "end-of-file-fixer"
- id: "trailing-whitespace"
Expand All @@ -47,17 +47,17 @@ repos:
additional_dependencies: &flake8_additional_dependencies
- "flake8==3.8.4"
- "flake8-broken-line==0.3.0"
- "flake8-bugbear==20.1.4"
- "flake8-bugbear==21.3.2"
- "flake8-builtins==1.5.3"
- "flake8-comprehensions==3.3.0"
- "flake8-comprehensions==3.3.1"
- "flake8-eradicate==1.0.0"
- "flake8-import-order==0.18.1"
- "flake8-mutable==1.2.0"
- "flake8-pie==0.6.1"
- "flake8-quotes==3.2.0"
- "flake8-string-format==0.3.0"
- "flake8-tidy-imports==4.1.0"
- "flake8-variables-names==0.0.3"
- "flake8-tidy-imports==4.2.1"
- "flake8-variables-names==0.0.4"
- "pep8-naming==0.11.1"
exclude: ^docs/.*$

Expand All @@ -70,7 +70,7 @@ repos:
exclude: ^docs/.*$

- repo: "https://github.com/pre-commit/mirrors-mypy"
rev: "v0.790"
rev: "v0.812"
hooks:
- id: "mypy"
name: "Lint code (mypy)"
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.1
3.9.2
337 changes: 205 additions & 132 deletions docs/requirements.txt

Large diffs are not rendered by default.

202 changes: 104 additions & 98 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ typing-extensions = {python = "<3.8", version = "^3.7.4"}
[tool.poetry.dev-dependencies]
aioredis = "^1.3.1"
async_generator = {python = "~3.6", version = "^1.10"}
coverage = {extras = ["toml"], version = "^5.4"}
coverage = "^5.5"
pytest = "^6.2.2"
pytest-aiohttp = "^0.3.0"
pytest-cov = "^2.11.1"
Expand Down

0 comments on commit e23ae82

Please sign in to comment.