From f26e4e9b0a95be49075b7394d63a629ee4a86712 Mon Sep 17 00:00:00 2001 From: Michael Osthege Date: Thu, 26 May 2022 19:15:48 +0200 Subject: [PATCH 1/2] Upgrade tests to PyMC 4.0.0b6 --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 8f85808..7148461 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ arviz clickhouse-driver flake8 -pymc==4.0.0b3 +pymc==4.0.0b6 pytest pytest-cov twine From d1423df78d44cdd46aaf60fb2442101294cb00d8 Mon Sep 17 00:00:00 2001 From: Michael Osthege Date: Thu, 26 May 2022 19:30:29 +0200 Subject: [PATCH 2/2] Upgrade pre-commit hooks --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 68b6b9d..151581d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ exclude: ^(docs|mcbackend/testdata)/ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.0.1 + rev: v4.2.0 hooks: - id: check-merge-conflict - id: check-toml @@ -16,16 +16,16 @@ repos: name: isort args: ["--profile", "black"] - repo: https://github.com/asottile/pyupgrade - rev: v2.29.1 + rev: v2.32.1 hooks: - id: pyupgrade args: [--py37-plus] - repo: https://github.com/psf/black - rev: 21.11b1 + rev: 22.3.0 hooks: - id: black - repo: https://github.com/PyCQA/pylint - rev: v2.12.2 + rev: v2.13.8 hooks: - id: pylint args: [--rcfile=.pylintrc]