Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
UmSenhorQualquer committed Aug 30, 2019
1 parent c45c06d commit bede31e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion base/pythonvideoannotator/pythonvideoannotator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# !/usr/bin/python3
# -*- coding: utf-8 -*-

__version__ = "3.305.535"
__version__ = "3.306"
__author__ = ["Ricardo Ribeiro", "Carlos Mao de Ferro", "Hugo Cachitas"]
__credits__ = ["Ricardo Ribeiro", "Carlos Mao de Ferro", "Hugo Cachitas"]
__license__ = "Attribution-NonCommercial-ShareAlike 4.0 International"
Expand Down
2 changes: 1 addition & 1 deletion base/pythonvideoannotator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"geometry_designer==0.4.38",
"modular-computer-vision-api-gui==0.3.31",
"pyforms-gui==4.904.152",
"modular-computer-vision-api==0.3.28",
"modular-computer-vision-api==0.3.29",
"python-video-annotator-models-gui==0.7.63",
"python-video-annotator-models==0.8.82",
"python-video-annotator-module-timeline==0.6.26",
Expand Down
2 changes: 1 addition & 1 deletion libraries/mcv-api
Submodule mcv-api updated from 70f7b6 to b4e2e8
7 changes: 6 additions & 1 deletion utils/deploy-pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,15 @@
# Dictionary with the correspondence of the libraries and folders.
PACKAGES = { 'pyforms-gui': 'pyforms_gui' }
PACKAGES_TO_IGNORE = [
'confapp'
]

PACKAGES_TO_IGNORE_FOR_REQUIREMENTS = [
'confapp',
'python-video-annotator-module-idtrackerai'
]


# sub packages directories to look for updates
DIRECTORIES_TO_SEARCH_FORM = [
os.path.join('libraries'),
Expand Down Expand Up @@ -197,7 +202,7 @@ def check_version_and_upload(dir_path):

updated, package_name, version = check_version_and_upload(dir_path)

if package_name != MAIN_REPO and package_name not in PACKAGES_TO_IGNORE:
if package_name != MAIN_REPO and package_name not in PACKAGES_TO_IGNORE_FOR_REQUIREMENTS:
requirements.append("{module}=={version}".format(module=package_name, version=version))


Expand Down

0 comments on commit bede31e

Please sign in to comment.