Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release 1.5.1 #287

Merged
merged 2 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for Thoth's micropipenv

## [1.5.1] - 2023-Oct-17 - Lumír Balhar <lbalhar@redhat.com>

### Fixed

* Fix compatibility with poetry 1.5+

## [1.5.0] - 2023-Mar-03 - Lumír Balhar <lbalhar@redhat.com>

### Added
Expand Down
4 changes: 2 additions & 2 deletions micropipenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
issue `python3 -m venv venv/ && . venv/bin/activate` to create one.
"""

__version__ = "1.5.0"
__version__ = "1.5.1"
__author__ = "Fridolin Pokorny <fridex.devel@gmail.com>"
__title__ = "micropipenv"

Expand All @@ -48,7 +48,7 @@
from urllib.parse import urlparse

_LOGGER = logging.getLogger(__title__)
_SUPPORTED_PIP_STR = ">=9,<=23.2.1" # Respects requirement in setup.py and latest pip to release date.
_SUPPORTED_PIP_STR = ">=9,<=23.3" # Respects requirement in setup.py and latest pip to release date.

try:
from pip import __version__ as pip_version
Expand Down
Loading