diff options
| author | Can Eldem <celdem@gitlab.com> | 2020-08-19 12:04:46 +0000 |
|---|---|---|
| committer | Can Eldem <celdem@gitlab.com> | 2020-08-19 12:04:46 +0000 |
| commit | 99a89248b2e6c08bf7a5c6c7950793b1418b9555 (patch) | |
| tree | 9f0ad8087db423cf57b1e96451a0c977422a50d7 /spec/fixtures/python/pipenv/simple | |
| parent | 24695063d1ba9a73ba92a44fae0813d5492cf29c (diff) | |
| parent | a54789bcfe9e05ab42dfb6e03457279384e343fe (diff) | |
Merge branch 'upgrade-license-finder' into 'master'v3.23.0
Upgrade license finder to 6.8.1
See merge request gitlab-org/security-products/license-management!209
Diffstat (limited to 'spec/fixtures/python/pipenv/simple')
| -rw-r--r-- | spec/fixtures/python/pipenv/simple/Pipfile | 10 | ||||
| -rw-r--r-- | spec/fixtures/python/pipenv/simple/Pipfile.lock | 69 |
2 files changed, 79 insertions, 0 deletions
diff --git a/spec/fixtures/python/pipenv/simple/Pipfile b/spec/fixtures/python/pipenv/simple/Pipfile new file mode 100644 index 0000000..2a4ffeb --- /dev/null +++ b/spec/fixtures/python/pipenv/simple/Pipfile @@ -0,0 +1,10 @@ +[[source]] +url = "https://pypi.python.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +requests = "*" + +[dev-packages] +pytest = "*" diff --git a/spec/fixtures/python/pipenv/simple/Pipfile.lock b/spec/fixtures/python/pipenv/simple/Pipfile.lock new file mode 100644 index 0000000..655ee42 --- /dev/null +++ b/spec/fixtures/python/pipenv/simple/Pipfile.lock @@ -0,0 +1,69 @@ +{ + "_meta": { + "hash": { + "sha256": "8d14434df45e0ef884d6c3f6e8048ba72335637a8631cc44792f52fd20b6f97a" + }, + "pipfile-spec": 5, + "requires": {}, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.python.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "certifi": { + "hashes": [ + "sha256:54a07c09c586b0e4c619f02a5e94e36619da8e2b053e20f594348c0611803704", + "sha256:40523d2efb60523e113b44602298f0960e900388cf3bb6043f645cf57ea9e3f5" + ], + "version": "==2017.7.27.1" + }, + "chardet": { + "hashes": [ + "sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691", + "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae" + ], + "version": "==3.0.4" + }, + "idna": { + "hashes": [ + "sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4", + "sha256:2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f" + ], + "version": "==2.6" + }, + "requests": { + "hashes": [ + "sha256:6a1b267aa90cac58ac3a765d067950e7dbbf75b1da07e895d1f594193a40a38b", + "sha256:9c443e7324ba5b85070c4a818ade28bfabedf16ea10206da1132edaa6dda237e" + ], + "version": "==2.18.4" + }, + "urllib3": { + "hashes": [ + "sha256:06330f386d6e4b195fbfc736b297f58c5a892e4440e54d294d7004e3a9bbea1b", + "sha256:cc44da8e1145637334317feebd728bd869a35285b93cbb4cca2577da7e62db4f" + ], + "version": "==1.22" + } + }, + "develop": { + "py": { + "hashes": [ + "sha256:2ccb79b01769d99115aa600d7eed99f524bf752bba8f041dc1c184853514655a", + "sha256:0f2d585d22050e90c7d293b6451c83db097df77871974d90efd5a30dc12fcde3" + ], + "version": "==1.4.34" + }, + "pytest": { + "hashes": [ + "sha256:b84f554f8ddc23add65c411bf112b2d88e2489fd45f753b1cae5936358bdf314", + "sha256:f46e49e0340a532764991c498244a60e3a37d7424a532b3ff1a6a7653f1a403a" + ], + "version": "==3.2.2" + } + } +} |
