Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

Commit d0bbf2f

Browse files
Change __name__ in __about__ to __title__ (#108)
1 parent d92d713 commit d0bbf2f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
version 1.3.2 (21/02/2018)
5+
6+
* Fixed `__name__` which made Python 3 installs break.
7+
48
version 1.3.1 (18/01/2018)
59

610
* Added ``SettingsVersion.v1_17`` which is written by VirtualBox 5.2.x

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
setup(
22-
name=about['__name__'],
22+
name=about['__title__'],
2323
version=about['__version__'],
2424
packages=["virtualbox",
2525
"virtualbox.library_ext"],

virtualbox/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
__name__ = 'pyvbox'
1+
__title__ = 'pyvbox'
22
__author__ = 'Michael Dorman'
33
__email__ = 'mjdorma+pyvbox@gmail.com'
4-
__version__ = '1.3.1'
4+
__version__ = '1.3.2'
55
__license__ = 'Apache-2.0'
66
__url__ = 'https://github.com/mjdorma/pyvbox'

virtualbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from multiprocessing import current_process
2525

2626
from virtualbox.library_ext import library
27-
from .__about__ import (__name__, # noqa: F401
27+
from .__about__ import (__title__, # noqa: F401
2828
__version__,
2929
__author__,
3030
__email__,

0 commit comments

Comments
 (0)