METADATA 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. Metadata-Version: 2.0
  2. Name: packaging
  3. Version: 16.8
  4. Summary: Core utilities for Python packages
  5. Home-page: https://github.com/pypa/packaging
  6. Author: Donald Stufft and individual contributors
  7. Author-email: donald@stufft.io
  8. License: BSD or Apache License, Version 2.0
  9. Platform: UNKNOWN
  10. Classifier: Intended Audience :: Developers
  11. Classifier: License :: OSI Approved :: Apache Software License
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Programming Language :: Python
  14. Classifier: Programming Language :: Python :: 2
  15. Classifier: Programming Language :: Python :: 2.6
  16. Classifier: Programming Language :: Python :: 2.7
  17. Classifier: Programming Language :: Python :: 3
  18. Classifier: Programming Language :: Python :: 3.2
  19. Classifier: Programming Language :: Python :: 3.3
  20. Classifier: Programming Language :: Python :: 3.4
  21. Requires-Dist: pyparsing
  22. Requires-Dist: six
  23. packaging
  24. =========
  25. Core utilities for Python packages
  26. Documentation
  27. -------------
  28. `documentation`_
  29. Discussion
  30. ----------
  31. If you run into bugs, you can file them in our `issue tracker`_.
  32. You can also join ``#pypa`` on Freenode to ask questions or get involved.
  33. .. _`documentation`: https://packaging.pypa.io/
  34. .. _`issue tracker`: https://github.com/pypa/packaging/issues
  35. Code of Conduct
  36. ---------------
  37. Everyone interacting in the packaging project's codebases, issue trackers, chat
  38. rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
  39. .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
  40. Changelog
  41. ---------
  42. 16.8 - 2016-10-29
  43. ~~~~~~~~~~~~~~~~~
  44. * Fix markers that utilize ``in`` so that they render correctly.
  45. * Fix an erroneous test on Python RC releases.
  46. 16.7 - 2016-04-23
  47. ~~~~~~~~~~~~~~~~~
  48. * Add support for the deprecated ``python_implementation`` marker which was
  49. an undocumented setuptools marker in addition to the newer markers.
  50. 16.6 - 2016-03-29
  51. ~~~~~~~~~~~~~~~~~
  52. * Add support for the deprecated, PEP 345 environment markers in addition to
  53. the newer markers.
  54. 16.5 - 2016-02-26
  55. ~~~~~~~~~~~~~~~~~
  56. * Fix a regression in parsing requirements with whitespaces between the comma
  57. separators.
  58. 16.4 - 2016-02-22
  59. ~~~~~~~~~~~~~~~~~
  60. * Fix a regression in parsing requirements like ``foo (==4)``.
  61. 16.3 - 2016-02-21
  62. ~~~~~~~~~~~~~~~~~
  63. * Fix a bug where ``packaging.requirements:Requirement`` was overly strict when
  64. matching legacy requirements.
  65. 16.2 - 2016-02-09
  66. ~~~~~~~~~~~~~~~~~
  67. * Add a function that implements the name canonicalization from PEP 503.
  68. 16.1 - 2016-02-07
  69. ~~~~~~~~~~~~~~~~~
  70. * Implement requirement specifiers from PEP 508.
  71. 16.0 - 2016-01-19
  72. ~~~~~~~~~~~~~~~~~
  73. * Relicense so that packaging is available under *either* the Apache License,
  74. Version 2.0 or a 2 Clause BSD license.
  75. * Support installation of packaging when only distutils is available.
  76. * Fix ``==`` comparison when there is a prefix and a local version in play.
  77. (`#41 <https://github.com/pypa/packaging/issues/41>`__).
  78. * Implement environment markers from PEP 508.
  79. 15.3 - 2015-08-01
  80. ~~~~~~~~~~~~~~~~~
  81. * Normalize post-release spellings for rev/r prefixes. `#35 <https://github.com/pypa/packaging/issues/35>`__
  82. 15.2 - 2015-05-13
  83. ~~~~~~~~~~~~~~~~~
  84. * Fix an error where the arbitary specifier (``===``) was not correctly
  85. allowing pre-releases when it was being used.
  86. * Expose the specifier and version parts through properties on the
  87. ``Specifier`` classes.
  88. * Allow iterating over the ``SpecifierSet`` to get access to all of the
  89. ``Specifier`` instances.
  90. * Allow testing if a version is contained within a specifier via the ``in``
  91. operator.
  92. 15.1 - 2015-04-13
  93. ~~~~~~~~~~~~~~~~~
  94. * Fix a logic error that was causing inconsistent answers about whether or not
  95. a pre-release was contained within a ``SpecifierSet`` or not.
  96. 15.0 - 2015-01-02
  97. ~~~~~~~~~~~~~~~~~
  98. * Add ``Version().is_postrelease`` and ``LegacyVersion().is_postrelease`` to
  99. make it easy to determine if a release is a post release.
  100. * Add ``Version().base_version`` and ``LegacyVersion().base_version`` to make
  101. it easy to get the public version without any pre or post release markers.
  102. * Support the update to PEP 440 which removed the implied ``!=V.*`` when using
  103. either ``>V`` or ``<V`` and which instead special cased the handling of
  104. pre-releases, post-releases, and local versions when using ``>V`` or ``<V``.
  105. 14.5 - 2014-12-17
  106. ~~~~~~~~~~~~~~~~~
  107. * Normalize release candidates as ``rc`` instead of ``c``.
  108. * Expose the ``VERSION_PATTERN`` constant, a regular expression matching
  109. a valid version.
  110. 14.4 - 2014-12-15
  111. ~~~~~~~~~~~~~~~~~
  112. * Ensure that versions are normalized before comparison when used in a
  113. specifier with a less than (``<``) or greater than (``>``) operator.
  114. 14.3 - 2014-11-19
  115. ~~~~~~~~~~~~~~~~~
  116. * **BACKWARDS INCOMPATIBLE** Refactor specifier support so that it can sanely
  117. handle legacy specifiers as well as PEP 440 specifiers.
  118. * **BACKWARDS INCOMPATIBLE** Move the specifier support out of
  119. ``packaging.version`` into ``packaging.specifiers``.
  120. 14.2 - 2014-09-10
  121. ~~~~~~~~~~~~~~~~~
  122. * Add prerelease support to ``Specifier``.
  123. * Remove the ability to do ``item in Specifier()`` and replace it with
  124. ``Specifier().contains(item)`` in order to allow flags that signal if a
  125. prerelease should be accepted or not.
  126. * Add a method ``Specifier().filter()`` which will take an iterable and returns
  127. an iterable with items that do not match the specifier filtered out.
  128. 14.1 - 2014-09-08
  129. ~~~~~~~~~~~~~~~~~
  130. * Allow ``LegacyVersion`` and ``Version`` to be sorted together.
  131. * Add ``packaging.version.parse()`` to enable easily parsing a version string
  132. as either a ``Version`` or a ``LegacyVersion`` depending on it's PEP 440
  133. validity.
  134. 14.0 - 2014-09-05
  135. ~~~~~~~~~~~~~~~~~
  136. * Initial release.