From 65e50aef7b251faa8225029de60a29354d485ecc Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Fri, 19 Jul 2024 21:07:03 -0400 Subject: [PATCH] Update version --- setup.cfg | 23 +++++++++++++---------- setup.py | 2 +- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0eee130ba..6db9e72d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,14 @@ +[bumpversion] +current_version = 1.0.1 + [isort] -line_length=100 -multi_line_output=3 -include_trailing_comma=True -known_standard_library=numpy,setuptools -skip_glob=*/__init__.py -known_myself=segment_anything -known_third_party=matplotlib,cv2,torch,torchvision,pycocotools,onnx,black,isort -no_lines_before=STDLIB,THIRDPARTY -sections=FUTURE,STDLIB,THIRDPARTY,MYSELF,FIRSTPARTY,LOCALFOLDER -default_section=FIRSTPARTY +line_length = 100 +multi_line_output = 3 +include_trailing_comma = True +known_standard_library = numpy,setuptools +skip_glob = */__init__.py +known_myself = segment_anything +known_third_party = matplotlib,cv2,torch,torchvision,pycocotools,onnx,black,isort +no_lines_before = STDLIB,THIRDPARTY +sections = FUTURE,STDLIB,THIRDPARTY,MYSELF,FIRSTPARTY,LOCALFOLDER +default_section = FIRSTPARTY diff --git a/setup.py b/setup.py index 5172542c3..0e24b8ece 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ description="An unofficial Python package for Meta AI's Segment Anything Model", url="https://github.com/opengeos/segment-anything", name="segment-anything-py", - version="1.0", + version="1.0.1", install_requires=["torch>=1.7", "torchvision>=0.8"], license="Apache Software License 2.0", long_description=readme,