mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-13 00:12:54 +00:00
* Add yapf run to CircleCI * Pin yapf version * Enable `SPLIT_ALL_TOP_LEVEL_COMMA_SEPARATED_VALUES` setting * Reformat all existing code with slight manual adjustments * test_runner/README: note that yapf is forced
26 lines
582 B
TOML
26 lines
582 B
TOML
[[source]]
|
|
url = "https://pypi.python.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
pytest = ">=6.0.0"
|
|
psycopg2 = "*"
|
|
typing-extensions = "*"
|
|
pyjwt = {extras = ["crypto"], version = "*"}
|
|
requests = "*"
|
|
pytest-xdist = "*"
|
|
asyncpg = "*"
|
|
cached-property = "*"
|
|
|
|
[dev-packages]
|
|
flake8 = "*"
|
|
mypy = "*"
|
|
# Behavior may change slightly between versions. These are run continuously,
|
|
# so we pin exact versions to avoid suprising breaks. Update if comfortable.
|
|
yapf = "==0.31.0"
|
|
|
|
[requires]
|
|
# we need at least 3.6, but pipenv doesn't allow to say this directly
|
|
python_version = "3"
|