From 3537cc91683d4b34b5c9eed0bb6ebe48abb71c31 Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Sun, 7 Jan 2024 19:27:00 +0800 Subject: [PATCH] Update version numbers --- README.md | 2 +- src/lib_not_dr/__init__.py | 2 +- src/lib_not_dr/nuitka/reader/__init__.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f7bc3c8..a20d6bb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A python lib came from [Difficult Rocket](https://github.com/shenjackyuanjie/Dif ## Information/信息 -- Version / 版本: 0.3.16 +- Version / 版本: 0.3.17 - Author / 作者: shenjackyuanjie <3695888@qq.com> [shenjackyuanjie](https://github.com/shenjackyuanjie) diff --git a/src/lib_not_dr/__init__.py b/src/lib_not_dr/__init__.py index f26a1b4..c56e624 100644 --- a/src/lib_not_dr/__init__.py +++ b/src/lib_not_dr/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING if TYPE_CHECKING: from lib_not_dr import loggers, nuitka, types, command -_version_ = "0.3.16" +_version_ = "0.3.17" # fmt: off __all__ = [ diff --git a/src/lib_not_dr/nuitka/reader/__init__.py b/src/lib_not_dr/nuitka/reader/__init__.py index c42db2c..4e11eb4 100644 --- a/src/lib_not_dr/nuitka/reader/__init__.py +++ b/src/lib_not_dr/nuitka/reader/__init__.py @@ -62,10 +62,11 @@ TOML_READERS = ( # try tomllib first "toml", # slow pure python toml reader "rtoml", # rust based toml reader - "tomlkit", # pure python toml reader "tomli", # pure python toml reader "pytomlpp", # cpp based toml reader "qtoml", # pure python toml reader, but faster than toml + # "tomlkit", # pure python toml reader + # tomlkit 需要特殊处理, 先不用了 )