This repository was archived by the owner on Jun 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ version 1.3.2 (21/02/2018)
5+
6+ * Fixed `__name__ ` which made Python 3 installs break.
7+
48version 1.3.1 (18/01/2018)
59
610* Added ``SettingsVersion.v1_17 `` which is written by VirtualBox 5.2.x
Original file line number Diff line number Diff line change 1919
2020
2121setup (
22- name = about ['__name__ ' ],
22+ name = about ['__title__ ' ],
2323 version = about ['__version__' ],
2424 packages = ["virtualbox" ,
2525 "virtualbox.library_ext" ],
Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change 2424from multiprocessing import current_process
2525
2626from 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__ ,
You can’t perform that action at this time.
0 commit comments