Skip to content

Commit

Permalink
Merge pull request #288 from jeanslack/ModuleNotFoundError
Browse files Browse the repository at this point in the history
fix: missing __init_.py files on package subdirs
  • Loading branch information
jeanslack authored Mar 29, 2024
2 parents f706a43 + 840c0da commit 5becd70
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ License: GPL3

Change Log:

+------------------------------------+
Sat, 30 Mon 2024 V.5.0.11

* This release fixes `ModuleNotFoundError` issue installing from PyPi and
packaging for distributions.
* Fix missing `__init__.py` file inside `vdms_panels` directory.

+------------------------------------+
Tue, 25 Mon 2024 V.5.0.10

Expand Down
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
videomass (5.0.11-1) UNRELEASED; urgency=medium

* This release fixes `ModuleNotFoundError` issue installing from PyPi and
packaging for distributions.
* Fix missing `__init__.py` file inside `vdms_panels` directory.

-- Gianluca Pernigotto <jeanlucperni@gmail.com> Sat, 30 Mar 2024 00:00:00 +0200

videomass (5.0.10-1) UNRELEASED; urgency=medium

* [A/V Conversions] [Presets Manager] [NEW] Added ability to manage and
Expand Down
Empty file.
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion videomass/vdms_sys/configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def __init__(self, kwargs):

else:
msg(f'executable={binarypath}')
# pip as normal user, usually Linux, MacOs, Unix
# pip as user, usually Linux, MacOs, Unix
if binarypath is None:
# need if user $PATH is not set yet
userbase = site.getuserbase()
Expand Down
2 changes: 1 addition & 1 deletion videomass/vdms_sys/msg_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def current_release():
"""
release_name = 'Videomass'
program_name = 'videomass'
version = '5.0.10'
version = '5.0.11'
release = 'released'
copyr = '2013-2024'
website = 'http://jeanslack.github.io/Videomass/'
Expand Down

0 comments on commit 5becd70

Please sign in to comment.