-
Notifications
You must be signed in to change notification settings - Fork 150
/
Pipfile
35 lines (30 loc) · 875 Bytes
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
# Do not add dependencies here, but list them in the setup.py instead
ggshield = { editable = true, path = "." }
[dev-packages]
black = "==24.3.0"
coverage = "*"
flake8 = "*"
flake8-isort = "*"
flake8-quotes = "*"
pre-commit = "*"
pytest = "==7.2.1" # pinning because of conflicting dependencies with exceptiongroup
pytest-mock = "*"
pytest-socket = "*"
pytest-voluptuous = "*"
seed-isort-config = "*"
snapshottest = "*"
typing-extensions = "*"
import-linter = "*"
jsonschema = "*"
vcrpy = "==5.1.0"
# Dependency of pytest-voluptuous. Pin it because 0.15.0 does not
# support Python 3.8 anymore.
voluptuous = "<0.15.0"
pyfakefs = ">=5.2.0, < 5.6.0" # Pin because 5.6.0 currently (2024-07-15) does not work on Windows
scriv = { version = "*", extras = ["toml"] }
pyright = "==1.1.367"