cxppython 0.2.10__tar.gz → 0.2.12__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {cxppython-0.2.10 → cxppython-0.2.12}/PKG-INFO +2 -1
  2. {cxppython-0.2.10 → cxppython-0.2.12}/README.md +2 -1
  3. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/PKG-INFO +2 -1
  4. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/requires.txt +1 -1
  5. {cxppython-0.2.10 → cxppython-0.2.12}/setup.py +2 -2
  6. {cxppython-0.2.10 → cxppython-0.2.12}/LICENSE +0 -0
  7. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/__init__.py +0 -0
  8. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/bittensor/__init__.py +0 -0
  9. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/bittensor/synapse.py +0 -0
  10. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/core/__init__.py +0 -0
  11. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/core/config.py +0 -0
  12. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/main.py +0 -0
  13. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/__init__.py +0 -0
  14. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/__init__.py +0 -0
  15. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/console.py +0 -0
  16. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/defines.py +0 -0
  17. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/format.py +0 -0
  18. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/helpers.py +0 -0
  19. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/loggingmachine.py +0 -0
  20. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/logginsimple.py +0 -0
  21. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/__init__.py +0 -0
  22. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/mongo_singleton.py +0 -0
  23. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/mysql.py +0 -0
  24. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/mysql_singleton.py +0 -0
  25. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/redis.py +0 -0
  26. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/easy_imports.py +0 -0
  27. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/SOURCES.txt +0 -0
  28. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/dependency_links.txt +0 -0
  29. {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/top_level.txt +0 -0
  30. {cxppython-0.2.10 → cxppython-0.2.12}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cxppython
3
- Version: 0.2.10
3
+ Version: 0.2.12
4
4
  Summary: A python utils package
5
5
  Home-page: https://github.com/yourusername/my_package
6
6
  Author: cxp
@@ -21,3 +21,4 @@ License-File: LICENSE
21
21
  - python setup.py sdist bdist_wheel
22
22
  ### upload
23
23
  - twine upload dist/*
24
+
@@ -5,4 +5,5 @@
5
5
  ### build
6
6
  - python setup.py sdist bdist_wheel
7
7
  ### upload
8
- - twine upload dist/*
8
+ - twine upload dist/*
9
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cxppython
3
- Version: 0.2.10
3
+ Version: 0.2.12
4
4
  Summary: A python utils package
5
5
  Home-page: https://github.com/yourusername/my_package
6
6
  Author: cxp
@@ -21,3 +21,4 @@ License-File: LICENSE
21
21
  - python setup.py sdist bdist_wheel
22
22
  ### upload
23
23
  - twine upload dist/*
24
+
@@ -9,5 +9,5 @@ SQLAlchemy[asyncio]<3.0.0,>=2.0.25
9
9
  pydantic<3.0.0,>=2.7.0
10
10
  cryptography<47.0.0,>=43.0.1
11
11
  pymongo<5.0.0,>=4.12.0
12
- redis<7.0.0,>=6.2.0
12
+ redis<8.0.0,>=6.2.0
13
13
  aiomysql<0.3.0,>=0.2.0
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as f:
4
4
  long_description = f.read()
5
5
  setup(
6
6
  name="cxppython", # 包名
7
- version="0.2.10", # 版本号
7
+ version="0.2.12", # 版本号
8
8
  packages=find_packages(exclude=["tests", "tests.*"]), # 自动找到所有包
9
9
  description="A python utils package",
10
10
  long_description=long_description,
@@ -25,7 +25,7 @@ setup(
25
25
  "pydantic>=2.7.0,<3.0.0",
26
26
  "cryptography>=43.0.1,<47.0.0",
27
27
  "pymongo>=4.12.0,<5.0.0",
28
- "redis>=6.2.0,<7.0.0",
28
+ "redis>=6.2.0,<8.0.0",
29
29
  "aiomysql>=0.2.0,<0.3.0",
30
30
  ], # 依赖(可选)
31
31
  classifiers=[ # 元数据
File without changes
File without changes
File without changes