Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit 0cb05d4

Browse files
Update Pipfile as temporary measure to unblock work involving compiler (#1012)
* Update Pipfile as temporary measure to unblock work involving compiler * type-hint docs * lint * Sync Pipfile with setup.py * Pin mypy to <0.8 * Revert "type-hint docs" This reverts commit b7854ae. * update pipfile lock * fix Pipfile comment * Fix extra line in conf.py * Fix cost estimation error type for flake8
1 parent 56d8865 commit 0cb05d4

File tree

4 files changed

+130
-103
lines changed

4 files changed

+130
-103
lines changed

Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ flake8 = ">=3.6.0,<4"
2121
flake8-bugbear = ">=19.8.0"
2222
flake8-print = ">=3.1.0,<4"
2323
isort = ">=4.3.4,<5"
24-
mypy = ">=0.750,<1"
24+
mypy = ">=0.750,<0.800" # Breaking change in mypy 0.800: https://github.com/obi1kenobi/typing-copilot/issues/10
2525
parameterized = ">=0.6.1,<1"
2626
pydocstyle = ">=5.0.1,<6"
2727
pylint = ">=2.4.4,<2.5"
@@ -43,7 +43,7 @@ ciso8601 = ">=2.1.3,<3"
4343
funcy = ">=1.7.3,<2"
4444
graphql-core = ">=3.1.2,<3.2" # minor versions sometimes contain breaking changes
4545
six = ">=1.10.0"
46-
sqlalchemy = ">=1.3.0,<2"
46+
sqlalchemy = ">=1.3.0,<1.4" # minor version update contains breaking changes
4747

4848
# The below is necessary to make a few pylint passes work properly, since pylint expects to be able
4949
# to run "import graphql_compiler" in the environment in which it runs.

0 commit comments

Comments
 (0)