Py2app

Latest version: v0.28.8

Safety actively analyzes 688735 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 8 of 11

0.4.3

Bug fixes:

- A bad format string in build_app.py made it impossible to copy the
Python framework into an app bundle.

0.4.2

Features:

- When the '--strip' option is specified we now also remove '.dSYM'
directories from the bundle.

- Remove dependency on a 'version.plist' file in the python framework

- A new recipe for `PyQt`_ 4.x. This recipe was donated by Kevin Walzer.

- A new recipe for `virtualenv`_, this allows you to use py2app from
a virtual environment.

.. _`virtualenv`: http://pypi.python.org/pypi/virtualenv

- Adds support for converting ``.xib`` files (NIB files for
Interface Builder 3)

- Introduces an experimental plugin API for data converters.

A conversion plugin should be defined as an entry-point in the
``py2app.converter`` group::

setup(
...
entry_points = {
'py2app.converter': [
"label = some_module:converter_function",
]
},
...
)

The conversion function should be defined like this::

from py2app.decorators import converts

converts('.png')
def optimze_png(source, proposed_destionation, dryrun=0):
Copy 'source' to 'proposed_destination'
The conversion is allowed to change the proposed
destination to another name in the same directory.
pass

.. `virtualenv`_: http://pypi.python.org/pypi/virtualenv

Buf fixes:

- This fixes an issue with copying a different version of Python over
to an app/plugin bundle than the one used to run py2app with.

0.4.0

------------

py2app 0.4.0 is a minor feature release (and was never formally released).

Features:

- Support for CoreData mapping models (introduced in Mac OS X 10.5)

- Support for python packages that are stored in zipfiles (such as ``zip_safe``
python eggs).

Bug fixes:

- Fix incorrect symlink target creation with an alias bundle that has included
frameworks.

- Stuffit tends to extract archives recursively, which results in unzipped
code archives inside py2app-created bundles. This version has a workaround
for this "feature" for Stuffit.

- Be more careful about passing non-constant strings as the template argumenti
of string formatting functions (in the app and bundle templates), to avoid
crashes under some conditions.

0.3.6

------------

py2app 0.3.6 is a minor bugfix release.

Bug fixes:

- Ensure that custom icons are copied into the output bundle

- Solve compatibility problem with some haxies and inputmanager plugins

0.3.5

------------

py2app 0.3.5 is a minor bugfix release.

Bug fixes:

- Resolve disable_linecache issue

- Fix Info.plist and Python path for plugins

0.3.4

------------

py2app 0.3.4 is a minor bugfix release.

Bug fixes:

- Fixed a typo in the py2applet script

- Removed some, but not all, compiler warnings from the bundle template
(which is still probably broken anyway)

Page 8 of 11

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.