1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
|
Change log for ``distlib``
--------------------------
0.2.5 (future)
~~~~~~~~~~~~~~
Released: not yet.
0.2.4
~~~~~
Released: 2016-09-30
- compat
- Updated to not fail on import if SSL is unavailable.
- index
- Switch from using gpg in preference to gpg2 for signing. This is
to avoid gpg2's behaviour of prompting for passwords, which interferes
with the tests on some machines.
- locators
- Changed project name comparisons to follow PEP 503. Thanks to Steven
Arcangeli for the patch.
- Added errors queue to Locator.
- manifest
- Changed match logic to work under Python 3.6, due to differences in
how fnmatch.translate behaves.
- resources
- Updated finder registry logic to reflect changes in Python 3.6.
- scripts
- Fixed regular expression in generated script boilerplate.
- util
- Updated to not fail on import if SSL is unavailable.
- Added normalize_name fpr project name comparisons using PEP 503.
- tests
- Updated to skip certain tests if SSL is unavailable.
- Numerous other test refinements, not detailed further here.
0.2.3
~~~~~
Released: 2016-04-30
- util
- Changed get_executable to return Unicode rather than bytes.
- Fixed #84: Allow + character in output script names.
- Relaxed too-stringent test looking for application/json in headers.
- wheel
- sorted the entries in RECORD before writing to file.
- tests
- Numerous test refinements, not detailed further here.
0.2.2
~~~~~
Released: 2016-01-30
- database
- Issue #81: Added support for detecting distributions installed by wheel
versions >= 0.23 (which use metadata.json rather than pydist.json).
Thanks to Te-jé Rodgers for the patch.
- locators
- Updated default PyPI URL to https://pypi.python.org/pypi
- metadata
- Updated to use different formatting for description field for V1.1
metadata.
- Corrected "classifier" to "classifiers" in the mapping for V1.0
metadata.
- scripts
- Improved support for Jython when quoting executables in output scripts.
- util
- Issue #77: Made the internal URL used for extended metadata fetches
configurable via a module attribute.
- Issue #78: Improved entry point parsing to handle leading spaces in
ini-format files.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- renamed environment variable SKIP_SLOW to SKIP_ONLINE in tests and
applied to some more tests.
- Numerous other test refinements, not detailed further here.
0.2.1
~~~~~
Released: 2015-07-07
- locators
- Issue #58: Return a Distribution instance or None from ``locate()``.
- Issue #59: Skipped special keys when looking for versions.
- Improved behaviour of PyPIJSONLocator to be analogous to that of other
locators.
- resource
- Added resource iterator functionality.
- scripts
- Issue #71: Updated launchers to decode shebangs using UTF-8. This allows
non-ASCII pathnames to be correctly handled.
- Ensured that the executable written to shebangs is normcased.
- Changed ScriptMaker to work better under Jython.
- util
- Changed the mode setting method to work better under Jython.
- Changed get_executable() to return a normcased value.
- wheel
- Handled multiple-architecture wheel filenames correctly.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- Numerous test refinements, not detailed further here.
0.2.0
~~~~~
Released: 2014-12-17
- compat
- Updated ``match_hostname`` to use the latest Python implementation.
- database
- Added `download_urls` and `digests` attributes to ``Distribution``.
- locators
- Issue #48: Fixed the problem of adding a tuple containing a set
(unhashable) to a set, by wrapping with frozenset().
- Issue #55: Return multiple download URLs for distributions, if
available.
- manifest
- Issue #57: Remove unhelpful warnings about pattern matches.
- metadata
- Updated to reflect changes to PEP 426.
- resources
- Issue #50: The type of the path needs to be preserved on 2.x.
- scripts
- Updated (including launchers) to support providing arguments to
interpreters in shebang lines.
- The launcher sources are now included in the repository and the
source distribution (they are to be found in the PC directory).
- Added frames support in IronPython (patch by Pawel Jasinski).
- Issue #51: encode shebang executable using utf-8 rather than fsencode.
- util
- Removed reference to __PYVENV_LAUNCHER__ when determining executable
for scripts (relevant only on OS X).
- Updated to support changes to PEP 426.
- version
- Updated to reflect changes to versioning proposed in PEP 440.
- wheel
- Updated build() code to respect interpreter arguments in prebuilt
scripts.
- Updated to support changes to PEP 426 / PEP 440.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- Numerous test refinements, not detailed further here.
0.1.9
~~~~~
Released: 2014-05-19
- index
- Added ``keystore`` keyword argument to signing and verification
APIs.
- scripts
- Issue #47: Updated binary launchers to fix double-quoting bug where
script executable paths have spaces.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- Numerous test refinements, not detailed further here.
0.1.8
~~~~~
Released: 2014-03-18
- index
- Improved thread-safety in SimpleScrapingLocator (issue #45).
- Replaced absolute imports with relative ones.
- Added ``search`` method to ``PackageIndex``.
- locators
- Improved thread-safety in ``SimpleScrapingLocator`` (issue #45).
- metadata
- Fixed bug in add_requirements implementation.
- resources
- The ``Cache`` class was refactored into ``distlib.util.Cache``
and ``distlib.resources.ResourceCache`` classes.
- scripts
- Implement quoting for executables with spaces in them.
- util
- Gained the ``Cache`` class, which is also used in ``distlib.wheel``.
- version
- Allowed versions with a single numeric component and a local
version component.
- Adjusted pre-release computation for legacy versions to be the same as
the logic in the setuptools documentation.
- wheel
- Added ``verify``, ``update``, ``is_compatible`` and ``is_mountable``
methods to the ``Wheel`` class.
- Converted local version separators from '-' to '_' and back.
- If SOABI not available, used Py_DEBUG, Py_UNICODE_SIZE and
WITH_PYMALLOC to derive the ABI.
- Added "exists" property to Wheel instances.
- Factored out RECORD writing and zip building to separate methods.
- Provided the ability to determine the location where extensions are
extracted, by using the ``distlib.util.Cache`` class.
- Avoided using ``pydist.json`` in 1.0 wheels (``bdist_wheel`` writes a
non-conforming ``pydist.json``.)
- Improved computation of compatible tags on OS X, and made COMPATIBLE_TAGS
a set.
- _backport/sysconfig
- Replaced an absolute import with a relative one.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- Numerous test refinements, not detailed further here.
0.1.7
~~~~~
Released: 2014-01-16
- metadata
- Added some more fields to the metadata for the index.
- resources
- Use native literal string in cache path.
- Issue #40: Now does path adjustments differently for files and zips.
- scripts
- Improved checking for venvs when generating scripts.
- util
- Issue #39: Fall back to temporary directory for cache if home directory
unavailable.
- wheel
- Use native literal string in cache path.
0.1.6
~~~~~
Released: 2013-12-31
- scripts
- Updated binary launchers because the wrong variant was shipped
with the previous release.
- version
- Added support for local component in PEP 440 versions.
- tests
- Numerous test refinements, not detailed further here.
0.1.5
~~~~~
Released: 2013-12-15
- compat
- Changed source of import for unescape in Python >= 3.4.
- index
- Used dummy_threading when threading isn't available.
- Used https for default index.
- locators
- Used dummy_threading when threading isn't available.
- scripts
- Defaulted to setting script mode bits on POSIX.
- Use uncompressed executable launchers, since some anti-virus
products raise false positive errors.
- util
- Used dummy_threading when threading isn't available.
- docs
- Updated out-of-date links in overview.
- tests
- Used dummy_threading when threading isn't available.
0.1.4
~~~~~
Released: 2013-10-31
- scripts
- Updated the logic for finding the distlib package using a relative,
rather than absolute method. This fixes a problem for pip, where
distlib is kept in the pip.vendor.distlib package.
- _backport/sysconfig
- The analogous change to that made for scripts, described above.
0.1.3
~~~~~
Released: 2013-10-18
- database
- Added support for PEP 426 JSON metadata (pydist.json).
- Generalised digests to support e.g. SHA256.
- Fixed a bug in parsing legacy metadata from .egg directories.
- Removed duplicated code relating to parsing "provides" fields.
- index
- Changes relating to support for PEP 426 JSON metadata (pydist.json).
- locators
- Changes relating to support for PEP 426 JSON metadata (pydist.json).
- Fixed a bug in scoring download URLs for preference when multiple URLs
are available.
- The legacy scheme is used for the default locator.
- Made changes relating to parsing "provides" fields.
- Generalised digests to support e.g. SHA256.
- If no release version is found for a requirement, prereleases are
now considered even if not explicitly requested.
- markers
- Added support for markers as specified in PEP 426.
- metadata
- Added support for PEP 426 JSON metadata (pydist.json). The old
metadata class is renamed to LegacyMetadata, and the (new)
Metadata class wraps the JSON format (and also the legacy format,
through LegacyMetadata).
- Removed code which was only used if docutils was installed. This code
implemented validation of .rst descriptions, which is not done in
distlib.
- scripts
- Updated the logic for writing executable files to deal as best we can
with files which are already in use and hence cannot be deleted on
Windows.
- Changed the script generation when launchers are used to write a
single executable which wraps a script (whether pre-built or generated)
and includes a manifest to avoid UAC prompts on Windows.
- Changed the interface for script generation options: the ``make`` and
``make_multiple`` methods of ``ScriptMaker`` now take an optional
``options`` dictionary.
- util
- Added extract_by_key() to copy selected keys from one dict to another.
- Added parse_name_and_version() for use in parsing "provides" fields.
- Made split_filename more flexible.
- version
- Added support for PEP 440 version matching.
- Removed AdaptiveVersion, AdaptiveMatcher etc. as they don't add
sufficient value to justify keeping them in.
- wheel
- Added wheel_version kwarg to Wheel.build API.
- Changed Wheel.install API (after consultation on distutils-sig).
- Added support for PEP 426 JSON metadata (pydist.json).
- Added lib_only flag to install() method.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- Numerous test refinements, not detailed further here.
0.1.2
~~~~~
Released: 2013-04-30
- compat
- Added BaseConfigurator backport for 2.6.
- database
- Return RECORD path from write_installed_files (or None if dry_run).
- Explicitly return None from write_shared_locations if dry run.
- metadata
- Added missing condition in :meth:`todict`.
- scripts
- Add variants and clobber flag for generation of foo/fooX/foo-X.Y.
- Added .exe manifests for Windows.
- util
- Regularised recording of written files.
- Added Configurator.
- version
- Tidyups, most suggested by Donald Stufft: Made key functions private,
removed _Common class, removed checking for huge version numbers, made
UnsupportedVersionError a ValueError.
- wheel
- Replaced absolute import with relative.
- Handle None return from write_shared_locations correctly.
- Fixed bug in Mounter for extension modules not in sub-packages.
- Made dylib-cache Python version-specific.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- Numerous test refinements, not detailed further here.
- other
- Corrected setup.py to ensure that sysconfig.cfg is included.
0.1.1
~~~~~
Released: 2013-03-22
- database
- Updated requirements logic to use extras and environment markers.
- Made it easier to subclass Distribution and EggInfoDistribution.
- locators
- Added method to clear locator caches.
- Added the ability to skip pre-releases.
- manifest
- Fixed bug which caused side-effect when sorting a manifest.
- metadata
- Updated to handle most 2.0 fields, though PEP 426 is still a draft.
- Added the option to skip unset fields when writing.
- resources
- Made separate subclasses ResourceBase, Resource and ResourceContainer
from Resource. Thanks to Thomas Kluyver for the suggestion and patch.
- scripts
- Fixed bug which prevented writing shebang lines correctly on Windows.
- util
- Made get_cache_base more useful by parameterising the suffix to use.
- Fixed a bug when reading CSV streams from .zip files under 3.x.
- version
- Added is_prerelease property to versions.
- Moved to PEP 426 version formats and sorting.
- wheel
- Fixed CSV stream reading under 3.x and handled UTF-8 in zip entries
correctly.
- Added metadata and info properties, and updated the install method to
return the installed distribution.
- Added mount/unmount functionality.
- Removed compatible_tags() function in favour of COMPATIBLE_TAGS
attribute.
- docs
- Numerous documentation updates, not detailed further here.
- tests
- Numerous test refinements, not detailed further here.
0.1.0
~~~~~
Released: 2013-03-02
- Initial release.
|