Skip to content

Commit

Permalink
Updated avro-python3 to version 1.10.0 (#171)
Browse files Browse the repository at this point in the history
* Updated avro-python3 to version 1.10.0

* Sorting changed.

* Update pyproject.toml

Co-authored-by: Swen Wenzel <5111028+swenzel@users.noreply.github.com>

Co-authored-by: Swen Wenzel <5111028+swenzel@users.noreply.github.com>
  • Loading branch information
ognjen-j and swenzel authored Dec 3, 2020
1 parent e107168 commit ce2ba43
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 37 deletions.
69 changes: 34 additions & 35 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ esque = "esque.cli.commands:esque"
[tool.poetry.dependencies]
python = "^3.6"

avro-python3 = "=1.8.2"
avro-python3 = "^1.10.0"
click = "^7.0"
confluent-kafka = {version = "^1.2", extras = ["avro"]}
fastavro = "^0.22.5"
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/commands/test_multiargs.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def test_topic_list_output_compatibility_for_piping(
assert result.exit_code == 0
# Invalidate cache
confluent_admin_client.poll(timeout=1)
all_topics = list(confluent_admin_client.list_topics(timeout=5).topics.keys())
all_topics = sorted(list(confluent_admin_client.list_topics(timeout=5).topics.keys()))
assert all_topics == ["__confluent.support.metrics", "__consumer_offsets"]


Expand Down

0 comments on commit ce2ba43

Please sign in to comment.