Skip to content

Commit

Permalink
Release v2022.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Sep 2, 2022
1 parent cc5612e commit a5c4493
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2022.9.2 (2022-09-02)
=====================


Bug Fixes
---------

- Fix issue where unnamed constraints were provided but which are not allowed by ``pip`` resolver. `#5273 <https://github.com/pypa/pipenv/issues/5273>`_


2022.8.31 (2022-08-31)
======================

Expand Down
1 change: 0 additions & 1 deletion news/5273.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/5316.trivial.rst

This file was deleted.

2 changes: 1 addition & 1 deletion pipenv/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# // ) ) / / // ) ) //___) ) // ) ) || / /
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = "2022.9.1.dev0"
__version__ = "2022.9.2"
19 changes: 13 additions & 6 deletions pipenv/pipenv.1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.TH "PIPENV" "1" "Aug 31, 2022" "2022.8.31" "pipenv"
.TH "PIPENV" "1" "Sep 02, 2022" "2022.9.2" "pipenv"
.SH NAME
pipenv \- pipenv Documentation
\fI\%\fP\fI\%\fP\fI\%\fP
Expand Down Expand Up @@ -453,6 +453,12 @@ You might want to set \fBexport PIPENV_VENV_IN_PROJECT=1\fP in your .bashrc/.zsh
.sp
Congratulations, you now know how to install and use Python packages! ✨ 🍰 ✨
.SS Release and Version History
.SS 2022.9.2 (2022\-09\-02)
.SS Bug Fixes
.INDENT 0.0
.IP \(bu 2
Fix issue where unnamed constraints were provided but which are not allowed by \fBpip\fP resolver. \fI\%#5273\fP
.UNINDENT
.SS 2022.8.31 (2022\-08\-31)
.SS Features & Improvements
.INDENT 0.0
Expand Down Expand Up @@ -3036,7 +3042,7 @@ RUN pip install \-\-user pipenv
# Tell pipenv to create venv in the current directory
ENV PIPENV_VENV_IN_PROJECT=1

# Pipefile contains requests
# Pipfile contains requests
ADD Pipfile.lock Pipfile /usr/src/

WORKDIR /usr/src
Expand All @@ -3054,22 +3060,23 @@ RUN /usr/src/.venv/bin/python \-c "import requests; print(requests.__version__)"

FROM docker.io/python:3.9 AS runtime

RUN mkdir \-v /usr/src/venv
RUN mkdir \-v /usr/src/.venv

COPY \-\-from=builder /usr/src/.venv/ /usr/src/venv/
COPY \-\-from=builder /usr/src/.venv/ /usr/src/.venv/

RUN /usr/src/venv/bin/python \-c "import requests; print(requests.__version__)"
RUN /usr/src/.venv/bin/python \-c "import requests; print(requests.__version__)"

# HERE GOES ANY CODE YOU NEED TO ADD TO CREATE YOUR APPLICATION\(aqS IMAGE
# For example
# RUN apt install \-y libcurl3\-gnutls
# RUN adduser \-\-uid 123123 coolio
# ADD run.py /usr/src/

WORKDIR /usr/src/

USER coolio

CMD ["./venv/bin/python", "\-m", "run.py"]
CMD ["./.venv/bin/python", "\-m", "run.py"]
.ft P
.fi
.UNINDENT
Expand Down

0 comments on commit a5c4493

Please sign in to comment.