pex

A tool for generating .pex (Python EXecutable) files, lock files and venvs.

APACHE-2.0 License

Downloads
2.5M
Stars
2.4K

Bot releases are hidden (Show)

pex - pex 1.3.2

Published by kwlzn over 6 years ago


1.3.2

  • Add blacklist handling for skipping requirements in pex resolver #457
pex - pex 1.3.1

Published by kwlzn over 6 years ago


1.3.1

  • scrub path when not inheriting #449
  • Fix up inherits_path tests to use new values #450
pex - pex 1.3.0

Published by kwlzn over 6 years ago


1.3.0

  • inherit_path allows 'prefer', 'fallback', 'false' #444
pex - pex 1.2.16

Published by kwlzn over 6 years ago


1.2.16

  • Change PEX re-exec variable from ENV to os.environ #441
pex - pex 1.2.15

Published by kwlzn almost 7 years ago


1.2.15

  • Bugfix for entry point targeting + integration test #435
pex - pex 1.2.14

Published by kwlzn almost 7 years ago


1.2.14

  • Add interpreter constraints option and use constraints to search for compatible interpreters at exec time #427
pex - pex 1.2.13

Published by kwlzn about 7 years ago


1.2.13

  • Fix handling of pre-release option. #424
  • Patch sys module using pex_path from PEX-INFO metadata #421
pex - pex 1.2.12

Published by kwlzn about 7 years ago


1.2.12

  • Create --pex-path argument for pex cli and load pex path into pex-info metadata #417
pex - pex 1.2.11

Published by jsirois about 7 years ago


1.2.11

  • Leverage subprocess32 when available. #411
  • Kill support for python 2.6. #405 #408
pex - pex 1.2.10

Published by kwlzn about 7 years ago


1.2.10

  • Allow passing a preamble file to the CLI. #400
pex - pex 1.2.9

Published by kwlzn about 7 years ago


1.2.9

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

Published by kwlzn over 7 years ago


1.2.8

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

Published by kwlzn over 7 years ago


1.2.7

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

Published by kwlzn over 7 years ago


1.2.6

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

Published by jsirois over 7 years ago


1.2.5

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

Published by kwlzn over 7 years ago


1.2.4

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

Published by kwlzn over 7 years ago


1.2.3

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

Published by jsirois over 7 years ago


1.2.2

  • Fix CacheControl import. (#357)
pex - pex 1.2.1

Published by jsirois over 7 years ago


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 - pex 1.2.0

Published by jsirois over 7 years ago


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)