Skip to content

Commit 3975d0b

Browse files
authored
Upgrade to nodestream 0.14.0 (#10)
* chore: upgrade to newest nodestream * chore: bump version
1 parent 5f78f21 commit 3975d0b

File tree

5 files changed

+109
-83
lines changed

5 files changed

+109
-83
lines changed

poetry.lock

Lines changed: 63 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nodestream-plugin-github"
3-
version = "0.13.1-beta.7"
3+
version = "0.14.0-beta.1"
44
description = ""
55
authors = ["Jon Bristow <[email protected]>"]
66
packages = [
@@ -10,18 +10,18 @@ readme = "README.md"
1010

1111
[tool.poetry.dependencies]
1212
python = "^3.12"
13-
nodestream = "^0.13.0"
14-
limits = "^3.14.1"
13+
nodestream = "^0.14"
14+
limits = "^4.0.1"
1515
tenacity = "^9.0.0"
16-
pandas = "^2.2.3"
16+
httpx = ">=0.27,<0.28"
1717

1818
[tool.poetry.group.dev.dependencies]
19-
ruff = "^0.8.1"
20-
black = "^24.10.0"
21-
isort = "^5.13.2"
19+
ruff = "^0.9"
20+
black = "^25.1"
21+
isort = "^6.0.0"
2222
pytest = "^8.3.4"
23-
pytest-asyncio = "^0.25.1"
24-
pytest-httpx = "0.34.0"
23+
pytest-asyncio = "^0.25.3"
24+
pytest-httpx = "^0.34.0"
2525
pytest-cov = "^6.0.0"
2626

2727
[build-system]
@@ -32,7 +32,7 @@ build-backend = "poetry.core.masonry.api"
3232
line-length = 88
3333
target-version = ['py313']
3434
preview = true
35-
enable-unstable-feature = ["hug_parens_with_braces_and_square_brackets", "parens_for_long_if_clauses_in_case_block", "remove_redundant_guard_parens", "wrap_long_dict_values_in_parens"]
35+
enable-unstable-feature = ["hug_parens_with_braces_and_square_brackets", "wrap_long_dict_values_in_parens"]
3636

3737
[tool.isort]
3838
profile = "black"
@@ -48,14 +48,16 @@ asyncio_default_fixture_loop_scope = "function"
4848
addopts = "--cov-report=term --cov-report=xml --cov=nodestream_github"
4949

5050
[tool.ruff.lint]
51-
select = [ "A", "ANN", "ARG", "ASYNC", "B", "C4", "DTZ", "E", "EM", "ERA", "F", "FBT", "FURB", "G", "I", "INP", "N", "PIE", "PT", "RET", "RUF", "S", "SIM", "T20", "TC", "UP", ]
51+
select = ["A", "ANN", "ARG", "ASYNC", "B", "C4", "DTZ", "E", "EM", "ERA", "F", "FBT", "FURB", "G", "I", "INP", "N", "PIE", "PT", "RET", "RUF", "S", "SIM", "T20", "TC", "UP", ]
5252
ignore = []
5353

5454
unfixable = ["B"]
5555

5656
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
5757
[tool.ruff.lint.per-file-ignores]
5858
"tests/*" = ["S101", "S106"]
59+
"nodestream_github/logging/__init__.py" = ["A005"]
60+
"nodestream_github/types/__init__.py" = ["A005"]
5961
[tool.ruff.lint.flake8-annotations]
6062
mypy-init-return = true
6163
suppress-none-returning = true

0 commit comments

Comments
 (0)