Skip to content

Commit

Permalink
Update version number in setup.py and __version__.py files
Browse files Browse the repository at this point in the history
  • Loading branch information
SohamTilekar committed Mar 20, 2024
1 parent 244ce09 commit cd74b99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# TODO: Add the Support to Download the ffmpeg file using the install function from the config.py while giving the user ability to not downloading it. like pip install vidiopy --no-ffmpeg-install or pip install vidiopy[no_ffmpeg_install] or any thing else.

__version__ = Path("vidiopy/__version__.py").read_text().strip().split('"')[1][:-1]
__version__ = Path("vidiopy/__version__.py").read_text().strip().split('"')[1]

with open(Path(r"./README.md")) as f:
long_description = f.read()
Expand Down
2 changes: 1 addition & 1 deletion vidiopy/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.00"

0 comments on commit cd74b99

Please sign in to comment.