15
0
forked from pool/python-wheel

Accepting request 294250 from home:benoit_monin:branches:devel:languages:python

- update to version 0.24.0
- removed wininst2wheel and egg2wheel: they are not in 0.24.0 anymore

OBS-URL: https://build.opensuse.org/request/show/294250
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-wheel?expand=0&rev=12
This commit is contained in:
Denisart Benjamin
2015-04-03 17:26:19 +00:00
committed by Git OBS Bridge
parent c98f335bbf
commit 161d3a753e
4 changed files with 39 additions and 15 deletions

View File

@@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Apr 1 21:04:26 UTC 2015 - benoit.monin@gmx.fr
- update to version 0.24.0:
* The python tag used for pure-python packages is now .pyN (major
version only). This change actually occurred in 0.23.0 when the
--python-tag option was added, but was not explicitly mentioned
in the changelog then.
* wininst2wheel and egg2wheel removed. Use "wheel convert
[archive]" instead.
* Wheel now supports setuptools style conditional requirements via
the extras_require={} syntax. Separate 'extra' names from
conditions using the : character. Wheel's own setup.py does
this. (The empty-string extra is the same as install_requires.)
These conditional requirements should work the same whether the
package is installed by wheel or by setup.py.
- additional changes from 0.23.0:
* Compatibiltiy tag flags added to the bdist_wheel command
* sdist should include files necessary for tests
* 'wheel convert' can now also convert unpacked eggs to wheel
* Rename pydist.json to metadata.json to avoid stepping on the PEP
* The --skip-scripts option has been removed, and not generating
scripts is now the default. The option was a temporary approach
until installers could generate scripts themselves. That is now
the case with pip 1.5 and later. Note that using pip 1.4 to
install a wheel without scripts will leave the installation
without entry-point wrappers. The "wheel install-scripts"
command can be used to generate the scripts in such cases.
* Thank you contributors
- removed wininst2wheel and egg2wheel:
they are not in 0.24.0 anymore
-------------------------------------------------------------------
Mon Feb 10 14:46:04 UTC 2014 - speilicke@suse.com