mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 06:22:57 +00:00
* Fix bugs found by mypy * Add some missing types and runtime checks, remove unused code * Make ZenithPageserver start right away for better type safety * Add `types-*` packages to Pipfile * Pin mypy version and run it on CircleCI
29 lines
660 B
TOML
29 lines
660 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]
|
|
# 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"
|
|
mypy = "==0.910"
|
|
# Non-pinned packages follow.
|
|
flake8 = "*"
|
|
types-requests = "*"
|
|
types-psycopg2 = "*"
|
|
|
|
[requires]
|
|
# we need at least 3.6, but pipenv doesn't allow to say this directly
|
|
python_version = "3"
|