From b5974dd5c27c61f48d605551617f8d49f05139f7 Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Mon, 17 May 2021 16:34:47 -0700 Subject: [PATCH] Restrict click version to <8 (#607) --- .circleci/config.yml | 2 +- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8f7adbfe1..e6299c24e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -365,7 +365,7 @@ jobs: command: | python -m venv ../venv . ../venv/bin/activate - pip install githubrelease + pip install click<8 githubrelease githubrelease release $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME \ create $CIRCLE_TAG --name $CIRCLE_TAG \ --publish ./dist/* diff --git a/CHANGELOG.md b/CHANGELOG.md index 26fefd65c..204be3482 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## HDMF 2.5.4 (May 17, 2021) ### Bug fix +- Fix incompatibility issue with downstream github-release tool used to deploy releases to GitHub. @rly (#607) - Fix issue where dependencies of included types were not being loaded in namespaces / extensions. @rly (#613) ## HDMF 2.5.3 (May 12, 2021)