luca-medeiros / lang-segment-anything

SAM with text prompt
Apache License 2.0
1.74k stars 192 forks source link

Python package and github releases version mismatch #85

Closed mmtj closed 1 day ago

mmtj commented 1 day ago

Description

This project already provides releases based on the SAM model versions:

However, the project version in pyproject.toml is still set to 0.1.0

[project]
name = "lang-sam"
version = "0.1.0"

Therefore even if you install latest release of lang-sam with pip, you will see the installed version as 0.1.0.

What exact command you ran:

$ pip install git+https://github.com/luca-medeiros/lang-segment-anything.git
...
$ pip list | grep sam
Package    Version
---------- -------
lang-sam        0.1.0

Expected behavior

$ pip list | grep sam
Package    Version
---------- -------
lang-sam        0.2.1

Environment