Skip to content

Commit

Permalink
revert, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
nadermx committed Jul 7, 2021
1 parent 2410a85 commit 406d5e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="backgroundremover",
version="0.1.1",
version="0.1.2",
description="Background remover from image and video",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/backgroundremover/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
A library to remove background from videos and images
"""

__version__ = "0.1.1"
__version__ = "0.1.2"
__author__ = 'Johnathan Nader'
__credits__ = 'BackgroundRemover.app'
3 changes: 1 addition & 2 deletions src/backgroundremover/cmd/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import glob
import os
from distutils.util import strtobool
import multiprocessing

from ..bg import remove
from ..utilities import matte_key, transparentgif, transparentvideo, transparentvideoovervideo, transparentvideooverimage, \
Expand Down Expand Up @@ -261,5 +260,5 @@ def main():


if __name__ == "__main__":
multiprocessing.set_start_method('spawn')
torch.multiprocessing.set_start_method('spawn')
main()

0 comments on commit 406d5e6

Please sign in to comment.