Skip to content

Commit af748d2

Browse files
authored
Merge branch 'master' into feature/sphinx-spellcheck
2 parents 085a7f7 + 4d93195 commit af748d2

File tree

5 files changed

+26
-15
lines changed

5 files changed

+26
-15
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ Pipenv: Python Development Workflow for Humans
66
[![Azure Pipelines Build Status](https://dev.azure.com/pypa/pipenv/_apis/build/status/Pipenv%20CI?branchName=master)](https://dev.azure.com/pypa/pipenv/_build/latest?definitionId=16&branchName=master)
77
[![image](https://img.shields.io/pypi/pyversions/pipenv.svg)](https://python.org/pypi/pipenv)
88

9+
910
------------------------------------------------------------------------
11+
[[ ~ Dependency Scanning by PyUp.io ~ ]](https://pyup.io)
1012

1113
**Pipenv** is a tool that aims to bring the best of all packaging worlds
1214
(bundler, composer, npm, cargo, yarn, etc.) to the Python world.

docs/advanced.rst

+9-10
Original file line numberDiff line numberDiff line change
@@ -237,16 +237,15 @@ Example::
237237

238238
.. note::
239239

240-
In order to enable this functionality while maintaining its permissive
241-
copyright license, `pipenv` embeds an API client key for the back-end
242-
Safety API operated by pyup.io rather than including a full copy of the
243-
CC-BY-NC-SA licensed Safety-DB database. This embedded client key is
244-
shared across all `pipenv check` users, and hence will be subject to
245-
API access throttling based on overall usage rather than individual
246-
client usage.
247-
248-
You can also use your own safety API key by setting the
249-
environment variable ``PIPENV_PYUP_API_KEY``.
240+
Each month, `PyUp.io` updates the ``safety`` database of
241+
insecure Python packages and `makes it available to the
242+
community for free <https://pyup.io/safety/>`__. Pipenv
243+
makes an API call to retrieve those results and use them
244+
each time you run ``pipenv check`` to show you vulnerable
245+
dependencies.
246+
247+
For more up-to-date vulnerability data, you may also use your own safety
248+
API key by setting the environment variable ``PIPENV_PYUP_API_KEY``.
250249

251250

252251
☤ Community Integrations

news/4210.trivial.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated PyUp.io information to reflect current situation.

pipenv/patched/notpip/_internal/pep425tags.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
import distutils.util
55
import logging
6+
import os
67
import platform
78
import re
89
import sys

tasks/vendoring/patches/patched/_post-pip-update-pep425tags.patch

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
diff --git a/pipenv/patched/notpip/_internal/pep425tags.py b/pipenv/patched/notpip/_internal/pep425tags.py
2-
index 042ba34b..58decc23 100644
2+
index 369275a8..16d041d9 100644
33
--- a/pipenv/patched/notpip/_internal/pep425tags.py
44
+++ b/pipenv/patched/notpip/_internal/pep425tags.py
5-
@@ -170,8 +170,9 @@ def is_linux_armhf():
5+
@@ -3,6 +3,7 @@ from __future__ import absolute_import
6+
7+
import distutils.util
8+
import logging
9+
+import os
10+
import platform
11+
import re
12+
import sys
13+
@@ -170,8 +171,9 @@ def is_linux_armhf():
614
return False
715
# hard-float ABI can be detected from the ELF header of the running
816
# process
@@ -13,7 +21,7 @@ index 042ba34b..58decc23 100644
1321
elf_header_raw = f.read(40) # read 40 first bytes of ELF header
1422
except (IOError, OSError, TypeError):
1523
return False
16-
@@ -205,7 +206,7 @@ def is_manylinux1_compatible():
24+
@@ -205,7 +207,7 @@ def is_manylinux1_compatible():
1725
pass
1826

1927
# Check glibc version. CentOS 5 uses glibc 2.5.
@@ -22,7 +30,7 @@ index 042ba34b..58decc23 100644
2230

2331

2432
def is_manylinux2010_compatible():
25-
@@ -223,7 +224,7 @@ def is_manylinux2010_compatible():
33+
@@ -223,7 +225,7 @@ def is_manylinux2010_compatible():
2634
pass
2735

2836
# Check glibc version. CentOS 6 uses glibc 2.12.
@@ -31,7 +39,7 @@ index 042ba34b..58decc23 100644
3139

3240

3341
def is_manylinux2014_compatible():
34-
@@ -249,7 +250,7 @@ def is_manylinux2014_compatible():
42+
@@ -249,7 +251,7 @@ def is_manylinux2014_compatible():
3543
pass
3644

3745
# Check glibc version. CentOS 7 uses glibc 2.17.

0 commit comments

Comments
 (0)