Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "samp_query"
version = "0.6.0"
version = "0.6.1"
authors = [
{ name="The Cheaterman", email="the.cheaterman@gmail.com" },
]
Expand All @@ -14,7 +14,7 @@ classifiers = [
]
dependencies = [
"trio",
"faust-cchardet",
"charset-normalizer",
]

[project.scripts]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
trio
# See: https://github.com/PyYoshi/cChardet/issues/81#issuecomment-1329126634
faust-cchardet
charset-normalizer
2 changes: 1 addition & 1 deletion samp_query/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import typing
from dataclasses import dataclass, field

import cchardet as chardet # type: ignore
import charset_normalizer as chardet # type: ignore
import trio

# Assuming ratio between max and min ping can't be higher than this
Expand Down