Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 650d9f3

Browse files
authoredJan 5, 2023
Merge pull request #322 from rstudio/bcwu-update-setupcfg
update click version in setup & requirements
2 parents efa102d + 4aa0405 commit 650d9f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎rsconnect/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def bootstrap(
407407
def add(ctx, name, server, api_key, insecure, cacert, account, token, secret, verbose):
408408

409409
set_verbosity(verbose)
410-
if click.__version__ >= "8.0.0" and sys.version_info >= (3, 8):
410+
if click.__version__ >= "8.0.0" and sys.version_info >= (3, 7):
411411
click.echo("Detected the following inputs:")
412412
for k, v in locals().items():
413413
if k in {"ctx", "verbose"}:

‎setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project_urls =
1717
[options]
1818
install_requires =
1919
six>=1.14.0
20-
click>=7.0.0
20+
click>=8.0.0
2121
pip>=10.0.0
2222
semver>=2.0.0,<3.0.0
2323
pyjwt>=2.4.0

0 commit comments

Comments
 (0)
Please sign in to comment.