Releases: python-poetry/poetry
Releases · python-poetry/poetry
0.12.4
0.12.3
Fixed
- Fixed the
--no-dev
option ininstall
not working properly. - Fixed prereleases being selected even if another constraint conflicted with them.
- Fixed an error when installing current package in development mode if the generated
setup.py
had special characters. - Fixed an error in
install
for applications not following a known structure. - Fixed an error when trying to retrieve the current environment.
- Fixed
debug:info
not showing the current project's virtualenv.
0.12.2
0.12.1
0.12.0
Added
- Added a brand new installer.
- Added support for multi-constraints dependencies.
- Added a cache version system.
- Added a
--lock
option toupdate
to only update the lock file without executing operations. (Thanks to @greysteil) - Added support for the
Project-URL
metadata. - Added support for optional scripts.
- Added a
--no-dev
option toshow
. (Thanks to @rodcloutier)
Changed
- Improved virtualenv detection and management.
- Wildcard
python
dependencies are now equivalent to~2.7 || ^3.4
. - Changed behavior of the resolver for conditional dependencies.
- The
install
command will now install the current project in editable mode. - The
develop
command is now deprecated in favor ofinstall
. - Improved the
check
command. - Empty passwords are now supported when publishing.
Fixed
- Fixed a memory leak in the resolver.
- Fixed a recursion error on duplicate dependencies with only different extras.
- Fixed handling of extras.
- Fixed duplicate entries in both sdist and wheel.
- Fixed excluded files appearing in the
package_data
of the generatedsetup.py
. - Fixed transitive directory dependencies installation.
- Fixed file permissions for configuration and authentication files.
- Fixed an error in
cache:clear
for Python 2.7. - Fixed publishing for the first time with a prerelease.