Skip to content

Commit e33fae2

Browse files
committed
chore(deps): sort
1 parent 04ea3b7 commit e33fae2

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,28 @@ classifiers = [
2121
[tool.poetry.dependencies]
2222
python = ">=3.8,<3.11"
2323
ibis-framework = ">=2,<4"
24-
platformdirs = "<2.5.3"
2524
packaging = "^21.3"
26-
# protobuf==3.20 C extensions aren't compatible with 3.19.4
27-
protobuf = ">=3.19,<3.20"
25+
platformdirs = "<2.5.3"
26+
protobuf = ">=3.19,<3.20" # protobuf==3.20 C extensions aren't compatible with 3.19.4
2827

2928
[tool.poetry.dev-dependencies]
30-
black = ">=22.1,<23"
29+
black = "^22.1.0"
3130
flake8 = "^4.0.0"
31+
ipython = "^8.2.0"
3232
isort = "^5.9.3"
3333
mypy = "^0.950"
34+
mypy-protobuf = "^3.0.0"
3435
protoletariat = "^0.9.0"
3536
pydocstyle = "^6.1.1"
3637
pytest = "^7.0.0"
38+
pytest-clarity = "^1.0.1"
3739
pytest-cov = "^3.0.0"
3840
pytest-mock = "^3.6.1"
3941
pytest-randomly = "^3.10.1"
42+
pytz = "^2022.1"
4043
pyupgrade = "^2.26.0"
4144
types-protobuf = "^3.18.1"
42-
mypy-protobuf = "^3.0.0"
43-
pytz = "^2022.1"
4445
types-pytz = "^2021.3.4"
45-
ipython = "^8.2.0"
46-
pytest-clarity = "^1.0.1"
4746

4847
[tool.pytest.ini_options]
4948
xfail_strict = true
@@ -54,6 +53,11 @@ addopts = [
5453
"--strict-markers",
5554
"--doctest-modules",
5655
]
56+
filterwarnings = [
57+
"error",
58+
# older importlib metadata that there's no real point in breaking with
59+
"ignore:SelectableGroups:DeprecationWarning",
60+
]
5761
markers = ["no_decompile"]
5862
norecursedirs = ["site-packages", "dist-packages", ".direnv"]
5963

0 commit comments

Comments
 (0)