Skip to content

Commit

Permalink
Upgrade black version
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonMaxfield committed Apr 19, 2022
1 parent 4bace71 commit 2a62b4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 21.9b0
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-mypy
Expand Down
2 changes: 1 addition & 1 deletion aicsimageio/writers/ome_tiff_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# the libtiff writer was unable to handle a 2GB numpy array.
# It would be great if we better understood exactly what this threshold is and how to
# calculate it but for now this is a stopgap working value
BIGTIFF_BYTE_LIMIT = 2 ** 21
BIGTIFF_BYTE_LIMIT = 2**21


class OmeTiffWriter(Writer):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def run(self):
*setup_requirements,
*test_requirements,
"asv>=0.4.2",
"black>=19.10b0",
"black>=22.3.0",
"bump2version>=1.0.1",
"coverage>=5.1",
"flake8>=3.8.3",
Expand Down

0 comments on commit 2a62b4e

Please sign in to comment.