From c8ea87ac3f894894d89d9ccd21a467249fee53b1 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Fri, 7 Apr 2023 17:47:09 -0700 Subject: [PATCH 1/4] Install typeguard==4.0.0rc1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 933129f7d..f1ac729c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ testing = [ "pytest-randomly", "pytest-timeout", "pre_commit", - "typeguard", + "typeguard==4.0.0rc1", # until https://github.com/agronholm/typeguard/issues/330 is fixed ] [project.urls] From 8b9faf86cf994a30e17e49b328f624fc49d87abc Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sun, 16 Apr 2023 14:31:49 -0700 Subject: [PATCH 2/4] Bump to rc4 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 898e44321..889cfa85e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ testing = [ "pytest-randomly", "pytest-timeout", "pre_commit", - "typeguard==4.0.0rc1", # until https://github.com/agronholm/typeguard/issues/330 is fixed + "typeguard==4.0.0rc4", # until https://github.com/agronholm/typeguard/issues/330 is fixed ] [project.urls] From c9ed86c7302f6348d7fa9b2cdef5bde506b7b888 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 17 May 2023 10:23:01 -0700 Subject: [PATCH 3/4] Pin typeguard>=4 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6efa02c27..839152f42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ testing = [ "pytest-randomly", "pytest-timeout", "pre_commit", - "typeguard==4.0.0rc4", # until https://github.com/agronholm/typeguard/issues/330 is fixed + "typeguard>=4.0.0", ] [project.urls] From 3b2707c7649e7c8d913b91730b37fe2563e8218f Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 17 May 2023 10:38:36 -0700 Subject: [PATCH 4/4] reenable typeguard CI --- .github/workflows/typeguard.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/typeguard.yml b/.github/workflows/typeguard.yml index d3c1da10e..1c1b3d350 100644 --- a/.github/workflows/typeguard.yml +++ b/.github/workflows/typeguard.yml @@ -1,8 +1,9 @@ name: typeguard -# TODO: enable this once typeguard=4 is released and issues are fixed. -# on: -# - push +on: + pull_request: + push: + branches: [main] jobs: typeguard: