Skip to content

Releases: pex-tool/pex

pex 1.2.9

25 Jul 04:39
Compare
Choose a tag to compare

1.2.9

  • Add first-class support for multi-interpreter and multi-platform pex construction. #394

pex 1.2.8

08 Jul 01:16
Compare
Choose a tag to compare

1.2.8

  • Minimum setuptools version should be 20.3 (#391)
  • Improve wheel support in pex. (#388)

pex 1.2.7

22 May 19:35
Compare
Choose a tag to compare

1.2.7

  • Sort keys in PEX-INFO file so the output is deterministic. (#384)
  • Pass platform for SourceTranslator (#386)

pex 1.2.6

07 Apr 18:28
Compare
Choose a tag to compare

1.2.6

  • Fix for Ambiguous Resolvable bug in transitive dependency resolution (#367)

pex 1.2.5

06 Apr 19:04
Compare
Choose a tag to compare

1.2.5

  • Resolving pre-release when explicitly requested (#372)
  • Pass allow_prerelease to other iterators (Static, Caching) (#373)

pex 1.2.4

07 Mar 22:41
Compare
Choose a tag to compare

1.2.4

  • Fix bug in cached dependency resolution with exact resolvable. (#365)
  • Treat .pth injected paths as extras. (#370)

pex 1.2.3

22 Feb 17:57
Compare
Choose a tag to compare

1.2.3

  • Follow redirects on HTTP requests (#361)
  • Fix corner case in cached dependency resolution (#362)

pex 1.2.2

31 Jan 04:12
Compare
Choose a tag to compare

1.2.2

  • Fix CacheControl import. (#357)

pex 1.2.1

24 Jan 00:13
Compare
Choose a tag to compare

1.2.1

This release is a quick fix for a bootstrapping bug that inadvertently went out in 1.2.0 (Issue #354).

  • Ensure packaging dependency is self-contained. (#355 fixes #354)

pex 1.2.0

23 Jan 22:13
Compare
Choose a tag to compare

1.2.0

This release changes pex requirement resolution behavior. Only stable requirements are resolved by
default now. The previous behavior that included pre-releases can be retained by passing --pre on
the pex command line or passing allow_prereleases=True via the API.

  • Upgrade dependencies to modern version ranges. (#352)
  • Add support for controlling prerelease resolution. (#350 fixes #28)