-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into shellcheck_fixes
- Loading branch information
Showing
20 changed files
with
193 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Security updates are applied only to the latest release. | ||
|
||
## Reporting a Vulnerability | ||
|
||
If you have discovered a security vulnerability in this project, please report it privately. **Do not disclose it as a public issue.** This gives us time to work with you to fix the issue before public exposure, reducing the chance that the exploit will be used before a patch is released. | ||
|
||
Please disclose it at [security advisory](https://github.com/PythonCharmers/python-future/security/advisories/new). | ||
|
||
This project is maintained by a team of volunteers on a reasonable-effort basis. As such, please give us at least 90 days to work on a fix before public exposure. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,3 @@ | ||
FROM debian:9 | ||
# This docker image has a copy of a wide array of Pythons installed | ||
RUN apt-get update | ||
RUN apt-get install --yes --no-install-recommends make build-essential zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libffi-dev liblzma-dev libssl1.0-dev | ||
RUN apt-get install --yes git vim | ||
RUN apt-get install --yes python3-pip | ||
ENV PYENV_ROOT=/opt/pyenv | ||
RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash | ||
RUN echo export PATH="/opt/pyenv/bin:$PATH" >> ~/.bashrc | ||
RUN echo 'eval "$(pyenv init -)"' >> ~/.bashrc | ||
RUN echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc | ||
# venv 15.2.0 is the last to support Python 2.6. | ||
RUN pip3 install virtualenv==15.2.0 | ||
# Can't get python 2.6 to build anymore | ||
# RUN PATH=/opt/pyenv/bin:$PATH pyenv install 2.6.9 | ||
# RUN virtualenv /root/py26 --python /opt/pyenv/versions/2.6.9/bin/python | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.3.7 | ||
RUN virtualenv /root/py33 --python /opt/pyenv/versions/3.3.7/bin/python | ||
RUN pip3 install virtualenv==20.0.21 | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.4.10 | ||
RUN virtualenv /root/py34 --python /opt/pyenv/versions/3.4.10/bin/python | ||
RUN apt-get install --yes libssl-dev libxmlsec1-dev | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 2.7.18 | ||
RUN virtualenv /root/py27 --python /opt/pyenv/versions/2.7.18/bin/python | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.5.9 | ||
RUN virtualenv /root/py35 --python /opt/pyenv/versions/3.5.9/bin/python | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.6.10 | ||
RUN virtualenv /root/py36 --python /opt/pyenv/versions/3.6.10/bin/python | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.7.7 | ||
RUN virtualenv /root/py37 --python /opt/pyenv/versions/3.7.7/bin/python | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.8.3 | ||
RUN virtualenv /root/py38 --python /opt/pyenv/versions/3.8.3/bin/python | ||
RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.9.0 | ||
RUN virtualenv /root/py39 --python /opt/pyenv/versions/3.9.0/bin/python | ||
# Lint tools | ||
RUN pip3 install flake8 | ||
RUN ln -s /usr/bin/python3 /usr/bin/python | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LANG=C.UTF-8 | ||
FROM quay.io/pypa/manylinux1_x86_64 | ||
WORKDIR /root/python-future | ||
ADD . /root/python-future |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.