Update version numbers

This commit is contained in:
shenjack 2024-01-07 19:27:00 +08:00
parent 3957cf5a29
commit 3537cc9168
Signed by: shenjack
GPG Key ID: 7B1134A979775551
3 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,7 @@ A python lib came from [Difficult Rocket](https://github.com/shenjackyuanjie/Dif
## Information/信息 ## Information/信息
- Version / 版本: 0.3.16 - Version / 版本: 0.3.17
- Author / 作者: shenjackyuanjie <3695888@qq.com> - Author / 作者: shenjackyuanjie <3695888@qq.com>
[shenjackyuanjie](https://github.com/shenjackyuanjie) [shenjackyuanjie](https://github.com/shenjackyuanjie)

View File

@ -9,7 +9,7 @@ from typing import TYPE_CHECKING
if TYPE_CHECKING: if TYPE_CHECKING:
from lib_not_dr import loggers, nuitka, types, command from lib_not_dr import loggers, nuitka, types, command
_version_ = "0.3.16" _version_ = "0.3.17"
# fmt: off # fmt: off
__all__ = [ __all__ = [

View File

@ -62,10 +62,11 @@ TOML_READERS = (
# try tomllib first # try tomllib first
"toml", # slow pure python toml reader "toml", # slow pure python toml reader
"rtoml", # rust based toml reader "rtoml", # rust based toml reader
"tomlkit", # pure python toml reader
"tomli", # pure python toml reader "tomli", # pure python toml reader
"pytomlpp", # cpp based toml reader "pytomlpp", # cpp based toml reader
"qtoml", # pure python toml reader, but faster than toml "qtoml", # pure python toml reader, but faster than toml
# "tomlkit", # pure python toml reader
# tomlkit 需要特殊处理, 先不用了
) )