python3-commons 0.5.34__tar.gz → 0.5.38__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.
Potentially problematic release.
This version of python3-commons might be problematic. Click here for more details.
- {python3_commons-0.5.34 → python3_commons-0.5.38}/.github/workflows/python-publish.yaml +2 -2
- {python3_commons-0.5.34/src/python3_commons.egg-info → python3_commons-0.5.38}/PKG-INFO +7 -9
- python3_commons-0.5.38/pyproject.toml +70 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/requirements.txt +3 -3
- python3_commons-0.5.38/setup.cfg +4 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38/src/python3_commons.egg-info}/PKG-INFO +7 -9
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons.egg-info/SOURCES.txt +0 -2
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons.egg-info/requires.txt +3 -3
- python3_commons-0.5.34/pyproject.toml +0 -3
- python3_commons-0.5.34/setup.cfg +0 -90
- python3_commons-0.5.34/src/python3_commons.egg-info/not-zip-safe +0 -1
- {python3_commons-0.5.34 → python3_commons-0.5.38}/.coveragerc +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/.gitignore +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/AUTHORS.rst +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/CHANGELOG.rst +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/LICENSE +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/README.md +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/README.rst +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/docs/Makefile +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/docs/_static/.gitignore +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/docs/authors.rst +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/docs/changelog.rst +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/docs/conf.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/docs/index.rst +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/docs/license.rst +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/requirements_dev.txt +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/requirements_test.txt +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/setup.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/db.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/logging/__init__.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/logging/filters.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/logging/formatters.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/tests/conftest.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/tests/test_audit.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/tests/test_helpers.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/tests/test_msgpack.py +0 -0
- {python3_commons-0.5.34 → python3_commons-0.5.38}/tests/test_msgspec.py +0 -0
|
@@ -25,11 +25,11 @@ jobs:
|
|
|
25
25
|
- name: Set up Python
|
|
26
26
|
uses: actions/setup-python@v5
|
|
27
27
|
with:
|
|
28
|
-
python-version: '3.
|
|
28
|
+
python-version: '3.13'
|
|
29
29
|
- name: Install dependencies
|
|
30
30
|
run: |
|
|
31
31
|
python -m pip install --upgrade pip
|
|
32
|
-
pip install build
|
|
32
|
+
python -m pip install build
|
|
33
33
|
- name: Build package
|
|
34
34
|
run: python -m build
|
|
35
35
|
- name: Publish package
|
|
@@ -1,26 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.38
|
|
4
4
|
Summary: Re-usable Python3 code
|
|
5
|
-
|
|
6
|
-
Author: Oleg Korsak
|
|
7
|
-
Author-email: kamikaze.is.waiting.you@gmail.com
|
|
5
|
+
Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
|
|
8
6
|
License: gpl-3
|
|
7
|
+
Project-URL: Homepage, https://github.com/kamikaze/python3-commons
|
|
9
8
|
Project-URL: Documentation, https://github.com/kamikaze/python3-commons/wiki
|
|
10
|
-
Platform: any
|
|
11
9
|
Classifier: Development Status :: 4 - Beta
|
|
12
10
|
Classifier: Programming Language :: Python
|
|
13
11
|
Requires-Python: >=3.12
|
|
14
|
-
Description-Content-Type: text/x-rst
|
|
12
|
+
Description-Content-Type: text/x-rst
|
|
15
13
|
License-File: LICENSE
|
|
16
14
|
License-File: AUTHORS.rst
|
|
17
15
|
Requires-Dist: asyncpg==0.30.0
|
|
18
16
|
Requires-Dist: lxml==5.3.0
|
|
19
|
-
Requires-Dist: minio==7.2.
|
|
17
|
+
Requires-Dist: minio==7.2.13
|
|
20
18
|
Requires-Dist: msgpack==1.1.0
|
|
21
19
|
Requires-Dist: msgspec==0.18.6
|
|
22
|
-
Requires-Dist: pydantic[email]==2.10.
|
|
23
|
-
Requires-Dist: pydantic-settings==2.
|
|
20
|
+
Requires-Dist: pydantic[email]==2.10.3
|
|
21
|
+
Requires-Dist: pydantic-settings==2.7.0
|
|
24
22
|
Requires-Dist: zeep==4.3.1
|
|
25
23
|
Provides-Extra: testing
|
|
26
24
|
Requires-Dist: pytest; extra == "testing"
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel", "pyscaffold>=3.2a0,<3.3a0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "python3-commons"
|
|
7
|
+
version = "0.5.38"
|
|
8
|
+
description = "Re-usable Python3 code"
|
|
9
|
+
authors = [
|
|
10
|
+
{name = "Oleg Korsak", email = "kamikaze.is.waiting.you@gmail.com"}
|
|
11
|
+
]
|
|
12
|
+
license = {text = "gpl-3"}
|
|
13
|
+
readme = {file = "README.rst", content-type = "text/x-rst"}
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Programming Language :: Python"
|
|
17
|
+
]
|
|
18
|
+
keywords = []
|
|
19
|
+
dependencies = [
|
|
20
|
+
"asyncpg==0.30.0",
|
|
21
|
+
"lxml==5.3.0",
|
|
22
|
+
"minio==7.2.13",
|
|
23
|
+
"msgpack==1.1.0",
|
|
24
|
+
"msgspec==0.18.6",
|
|
25
|
+
"pydantic[email]==2.10.3",
|
|
26
|
+
"pydantic-settings==2.7.0",
|
|
27
|
+
"zeep==4.3.1"
|
|
28
|
+
# Replace msgspec Git dependency for PyPI compatibility, consider releasing
|
|
29
|
+
# a vendorized or fixed version to your environment
|
|
30
|
+
# Example: "msgspec>=0.1.0"
|
|
31
|
+
]
|
|
32
|
+
requires-python = ">=3.12"
|
|
33
|
+
|
|
34
|
+
[project.optional-dependencies]
|
|
35
|
+
testing = [
|
|
36
|
+
"pytest",
|
|
37
|
+
"pytest-cov"
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[project.urls]
|
|
41
|
+
Homepage = "https://github.com/kamikaze/python3-commons"
|
|
42
|
+
Documentation = "https://github.com/kamikaze/python3-commons/wiki"
|
|
43
|
+
|
|
44
|
+
[tool.setuptools.packages.find]
|
|
45
|
+
where = ["src"]
|
|
46
|
+
exclude = ["tests"]
|
|
47
|
+
|
|
48
|
+
[tool.pytest.ini_options]
|
|
49
|
+
addopts = [
|
|
50
|
+
"--cov python3_commons --cov-report term-missing",
|
|
51
|
+
"--verbose"
|
|
52
|
+
]
|
|
53
|
+
norecursedirs = ["dist", "build", ".tox"]
|
|
54
|
+
testpaths = ["tests"]
|
|
55
|
+
|
|
56
|
+
[tool.flake8]
|
|
57
|
+
exclude = [
|
|
58
|
+
".tox",
|
|
59
|
+
"build",
|
|
60
|
+
"dist",
|
|
61
|
+
".eggs",
|
|
62
|
+
"docs/conf.py"
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[tool.pyscaffold]
|
|
66
|
+
version = "3.2.3"
|
|
67
|
+
package = "python3_commons"
|
|
68
|
+
|
|
69
|
+
[tool.bdist_wheel]
|
|
70
|
+
universal = true
|
|
@@ -1,26 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.38
|
|
4
4
|
Summary: Re-usable Python3 code
|
|
5
|
-
|
|
6
|
-
Author: Oleg Korsak
|
|
7
|
-
Author-email: kamikaze.is.waiting.you@gmail.com
|
|
5
|
+
Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
|
|
8
6
|
License: gpl-3
|
|
7
|
+
Project-URL: Homepage, https://github.com/kamikaze/python3-commons
|
|
9
8
|
Project-URL: Documentation, https://github.com/kamikaze/python3-commons/wiki
|
|
10
|
-
Platform: any
|
|
11
9
|
Classifier: Development Status :: 4 - Beta
|
|
12
10
|
Classifier: Programming Language :: Python
|
|
13
11
|
Requires-Python: >=3.12
|
|
14
|
-
Description-Content-Type: text/x-rst
|
|
12
|
+
Description-Content-Type: text/x-rst
|
|
15
13
|
License-File: LICENSE
|
|
16
14
|
License-File: AUTHORS.rst
|
|
17
15
|
Requires-Dist: asyncpg==0.30.0
|
|
18
16
|
Requires-Dist: lxml==5.3.0
|
|
19
|
-
Requires-Dist: minio==7.2.
|
|
17
|
+
Requires-Dist: minio==7.2.13
|
|
20
18
|
Requires-Dist: msgpack==1.1.0
|
|
21
19
|
Requires-Dist: msgspec==0.18.6
|
|
22
|
-
Requires-Dist: pydantic[email]==2.10.
|
|
23
|
-
Requires-Dist: pydantic-settings==2.
|
|
20
|
+
Requires-Dist: pydantic[email]==2.10.3
|
|
21
|
+
Requires-Dist: pydantic-settings==2.7.0
|
|
24
22
|
Requires-Dist: zeep==4.3.1
|
|
25
23
|
Provides-Extra: testing
|
|
26
24
|
Requires-Dist: pytest; extra == "testing"
|
|
@@ -9,7 +9,6 @@ pyproject.toml
|
|
|
9
9
|
requirements.txt
|
|
10
10
|
requirements_dev.txt
|
|
11
11
|
requirements_test.txt
|
|
12
|
-
setup.cfg
|
|
13
12
|
setup.py
|
|
14
13
|
.github/workflows/python-publish.yaml
|
|
15
14
|
docs/Makefile
|
|
@@ -29,7 +28,6 @@ src/python3_commons/object_storage.py
|
|
|
29
28
|
src/python3_commons.egg-info/PKG-INFO
|
|
30
29
|
src/python3_commons.egg-info/SOURCES.txt
|
|
31
30
|
src/python3_commons.egg-info/dependency_links.txt
|
|
32
|
-
src/python3_commons.egg-info/not-zip-safe
|
|
33
31
|
src/python3_commons.egg-info/requires.txt
|
|
34
32
|
src/python3_commons.egg-info/top_level.txt
|
|
35
33
|
src/python3_commons/logging/__init__.py
|
python3_commons-0.5.34/setup.cfg
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
[metadata]
|
|
2
|
-
name = python3-commons
|
|
3
|
-
version = 0.5.34
|
|
4
|
-
description = Re-usable Python3 code
|
|
5
|
-
author = Oleg Korsak
|
|
6
|
-
author_email = kamikaze.is.waiting.you@gmail.com
|
|
7
|
-
license = gpl-3
|
|
8
|
-
long_description = file: README.rst
|
|
9
|
-
long_description_content_type = text/x-rst; charset=UTF-8
|
|
10
|
-
url = https://github.com/kamikaze/python3-commons
|
|
11
|
-
project_urls =
|
|
12
|
-
Documentation = https://github.com/kamikaze/python3-commons/wiki
|
|
13
|
-
platforms = any
|
|
14
|
-
classifiers =
|
|
15
|
-
Development Status :: 4 - Beta
|
|
16
|
-
Programming Language :: Python
|
|
17
|
-
|
|
18
|
-
[options]
|
|
19
|
-
zip_safe = False
|
|
20
|
-
packages = find:
|
|
21
|
-
include_package_data = True
|
|
22
|
-
package_dir =
|
|
23
|
-
=src
|
|
24
|
-
setup_requires = pyscaffold>=3.2a0,<3.3a0
|
|
25
|
-
install_requires =
|
|
26
|
-
asyncpg==0.30.0
|
|
27
|
-
lxml==5.3.0
|
|
28
|
-
minio==7.2.11
|
|
29
|
-
msgpack==1.1.0
|
|
30
|
-
msgspec==0.18.6
|
|
31
|
-
pydantic[email]==2.10.1
|
|
32
|
-
pydantic-settings==2.6.1
|
|
33
|
-
zeep==4.3.1
|
|
34
|
-
python_requires = >=3.12
|
|
35
|
-
|
|
36
|
-
[options.packages.find]
|
|
37
|
-
where = src
|
|
38
|
-
exclude =
|
|
39
|
-
tests
|
|
40
|
-
|
|
41
|
-
[options.extras_require]
|
|
42
|
-
testing =
|
|
43
|
-
pytest
|
|
44
|
-
pytest-cov
|
|
45
|
-
|
|
46
|
-
[options.entry_points]
|
|
47
|
-
|
|
48
|
-
[test]
|
|
49
|
-
extras = True
|
|
50
|
-
|
|
51
|
-
[tool:pytest]
|
|
52
|
-
addopts =
|
|
53
|
-
--cov python3_commons --cov-report term-missing
|
|
54
|
-
--verbose
|
|
55
|
-
norecursedirs =
|
|
56
|
-
dist
|
|
57
|
-
build
|
|
58
|
-
.tox
|
|
59
|
-
testpaths = tests
|
|
60
|
-
|
|
61
|
-
[aliases]
|
|
62
|
-
dists = bdist_wheel
|
|
63
|
-
|
|
64
|
-
[bdist_wheel]
|
|
65
|
-
universal = 1
|
|
66
|
-
|
|
67
|
-
[build_sphinx]
|
|
68
|
-
source_dir = docs
|
|
69
|
-
build_dir = build/sphinx
|
|
70
|
-
|
|
71
|
-
[devpi:upload]
|
|
72
|
-
no-vcs = 1
|
|
73
|
-
formats = bdist_wheel
|
|
74
|
-
|
|
75
|
-
[flake8]
|
|
76
|
-
exclude =
|
|
77
|
-
.tox
|
|
78
|
-
build
|
|
79
|
-
dist
|
|
80
|
-
.eggs
|
|
81
|
-
docs/conf.py
|
|
82
|
-
|
|
83
|
-
[pyscaffold]
|
|
84
|
-
version = 3.2.3
|
|
85
|
-
package = python3_commons
|
|
86
|
-
|
|
87
|
-
[egg_info]
|
|
88
|
-
tag_build =
|
|
89
|
-
tag_date = 0
|
|
90
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
{python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python3_commons-0.5.34 → python3_commons-0.5.38}/src/python3_commons.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|