Skip to content

Commit

Permalink
Revert black version for older Python runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Nov 21, 2023
1 parent af8adc7 commit 7fb3daf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,19 @@
"Jinja2==3.0.3", # https://github.com/pallets/flask/issues/4494
"pytest-cov>=2,<3",
"flake8>=5,<6",
"black==23.11.0",
# Don't change this version without running CI builds;
# The latest version may not be available for older Python runtime
"black==22.8.0",
"click==8.0.4", # black is affected by https://github.com/pallets/click/issues/2225
"psutil>=5,<6",
# used only under slack_sdk/*_store
"boto3<=2",
"moto>=3,<4", # For AWS tests
]
codegen_dependencies = [
"black==23.11.0",
# Don't change this version without running CI builds;
# The latest version may not be available for older Python runtime
"black==22.10.0",
]

needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
Expand Down

0 comments on commit 7fb3daf

Please sign in to comment.