Skip to content

Commit

Permalink
chore(deps): sort
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed May 12, 2022
1 parent 04ea3b7 commit e33fae2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 12 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,28 @@ classifiers = [
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
ibis-framework = ">=2,<4"
platformdirs = "<2.5.3"
packaging = "^21.3"
# protobuf==3.20 C extensions aren't compatible with 3.19.4
protobuf = ">=3.19,<3.20"
platformdirs = "<2.5.3"
protobuf = ">=3.19,<3.20" # protobuf==3.20 C extensions aren't compatible with 3.19.4

[tool.poetry.dev-dependencies]
black = ">=22.1,<23"
black = "^22.1.0"
flake8 = "^4.0.0"
ipython = "^8.2.0"
isort = "^5.9.3"
mypy = "^0.950"
mypy-protobuf = "^3.0.0"
protoletariat = "^0.9.0"
pydocstyle = "^6.1.1"
pytest = "^7.0.0"
pytest-clarity = "^1.0.1"
pytest-cov = "^3.0.0"
pytest-mock = "^3.6.1"
pytest-randomly = "^3.10.1"
pytz = "^2022.1"
pyupgrade = "^2.26.0"
types-protobuf = "^3.18.1"
mypy-protobuf = "^3.0.0"
pytz = "^2022.1"
types-pytz = "^2021.3.4"
ipython = "^8.2.0"
pytest-clarity = "^1.0.1"

[tool.pytest.ini_options]
xfail_strict = true
Expand All @@ -54,6 +53,11 @@ addopts = [
"--strict-markers",
"--doctest-modules",
]
filterwarnings = [
"error",
# older importlib metadata that there's no real point in breaking with
"ignore:SelectableGroups:DeprecationWarning",
]
markers = ["no_decompile"]
norecursedirs = ["site-packages", "dist-packages", ".direnv"]

Expand Down

0 comments on commit e33fae2

Please sign in to comment.