Skip to content

Commit 1a2f6d8

Browse files
committed
py-serializable: update to 2.0.0.
v2.0.0 (2025-02-09) Breaking refactor!: rename python package serializable -> py_serializable (#155) The python package was renamed from serializable to py_serializable. Therefore, you need to adjust your imports. The following shows a quick way to adjust imports in the most efficient way. OLD imports import serializable from serializable import ViewType, XmlArraySerializationType, XmlStringSerializationType from serializable.helpers import BaseHelper, Iso8601Date ADJUSTED imports import py_serializable as serializable from py_serializable import ViewType, XmlArraySerializationType, XmlStringSerializationType from py_serializable.helpers import BaseHelper, Iso8601Date see migration path: https://py-serializable.readthedocs.io/en/refactor-rename-installable-py_serializable/migration.html Unknown Delete duplicate CODEOWNERS (#156) we have a codeowners file in root already (b64cdde) What's Changed chore(deps-dev): update mypy requirement from 1.11.2 to 1.12.0 by @dependabot in #143 chore(deps-dev): update mypy requirement from 1.12.0 to 1.13.0 by @dependabot in #145 chore(deps-dev): update flake8-bugbear requirement from 24.8.19 to 24.10.31 by @dependabot in #146 chore(deps-dev): update flake8-bugbear requirement from 24.10.31 to 24.12.12 by @dependabot in #150 chore(deps-dev): update mypy requirement from 1.13.0 to 1.14.1 by @dependabot in #154 Delete duplicate CODEOWNERS by @jkowalleck in #156 chore(docs): chanelog contains only relevant by @jkowalleck in #157 chore(docs): recreate changelog by @jkowalleck in #158 chore(deps): bump actions/upload-artifact from 3 to 4 by @dependabot in #37 refactor!: rename python package serializable -> py_serializable by @jkowalleck in #155 chore(deps): update sphinx requirement from <8,>=7.2.6 to >=7.2.6,<9 by @dependabot in #127
1 parent 3f3ce3f commit 1a2f6d8

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

devel/py-serializable/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# $NetBSD: Makefile,v 1.12 2024/10/03 08:43:22 adam Exp $
1+
# $NetBSD: Makefile,v 1.13 2025/02/18 10:43:11 wiz Exp $
22

3-
DISTNAME= py_serializable-1.1.2
3+
DISTNAME= py_serializable-2.0.0
44
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py_//}
55
CATEGORIES= devel python
66
MASTER_SITES= ${MASTER_SITE_PYPI:=p/py-serializable/}

devel/py-serializable/PLIST

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
@comment $NetBSD: PLIST,v 1.5 2024/07/14 13:33:18 wiz Exp $
1+
@comment $NetBSD: PLIST,v 1.6 2025/02/18 10:43:11 wiz Exp $
22
${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
33
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
44
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
55
${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
6-
${PYSITELIB}/serializable/__init__.py
7-
${PYSITELIB}/serializable/__init__.pyc
8-
${PYSITELIB}/serializable/__init__.pyo
9-
${PYSITELIB}/serializable/formatters.py
10-
${PYSITELIB}/serializable/formatters.pyc
11-
${PYSITELIB}/serializable/formatters.pyo
12-
${PYSITELIB}/serializable/helpers.py
13-
${PYSITELIB}/serializable/helpers.pyc
14-
${PYSITELIB}/serializable/helpers.pyo
15-
${PYSITELIB}/serializable/json.py
16-
${PYSITELIB}/serializable/json.pyc
17-
${PYSITELIB}/serializable/json.pyo
18-
${PYSITELIB}/serializable/py.typed
19-
${PYSITELIB}/serializable/xml.py
20-
${PYSITELIB}/serializable/xml.pyc
21-
${PYSITELIB}/serializable/xml.pyo
6+
${PYSITELIB}/py_serializable/__init__.py
7+
${PYSITELIB}/py_serializable/__init__.pyc
8+
${PYSITELIB}/py_serializable/__init__.pyo
9+
${PYSITELIB}/py_serializable/formatters.py
10+
${PYSITELIB}/py_serializable/formatters.pyc
11+
${PYSITELIB}/py_serializable/formatters.pyo
12+
${PYSITELIB}/py_serializable/helpers.py
13+
${PYSITELIB}/py_serializable/helpers.pyc
14+
${PYSITELIB}/py_serializable/helpers.pyo
15+
${PYSITELIB}/py_serializable/json.py
16+
${PYSITELIB}/py_serializable/json.pyc
17+
${PYSITELIB}/py_serializable/json.pyo
18+
${PYSITELIB}/py_serializable/py.typed
19+
${PYSITELIB}/py_serializable/xml.py
20+
${PYSITELIB}/py_serializable/xml.pyc
21+
${PYSITELIB}/py_serializable/xml.pyo

devel/py-serializable/distinfo

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$NetBSD: distinfo,v 1.11 2024/10/03 08:43:22 adam Exp $
1+
$NetBSD: distinfo,v 1.12 2025/02/18 10:43:11 wiz Exp $
22

3-
BLAKE2s (py_serializable-1.1.2.tar.gz) = 6550ce4c77565d3aa231e4d89c80846a5fbb33839be24f17a139b10675b68724
4-
SHA512 (py_serializable-1.1.2.tar.gz) = c94e91a8c19a4d7003c6e96d62473420f3b8ed01af2248509212a5b3790b9c3e5010731416aa7819305223fd2bc36e304944d99d81a6f6a334a2fbcabd689c6f
5-
Size (py_serializable-1.1.2.tar.gz) = 55844 bytes
3+
BLAKE2s (py_serializable-2.0.0.tar.gz) = 9704e5cdd450a9bd399a082668a6b5a599d5a042f8030bb14ad191b81b28350c
4+
SHA512 (py_serializable-2.0.0.tar.gz) = 281ccc1b4e7a4cd556ad2c11ce4d533b9e0225e791ca76c2bc927ef689fe1af57d17ddb32159f931aea372af4dff5bb0211fbd63e972be164b1fed0b4634f7e6
5+
Size (py_serializable-2.0.0.tar.gz) = 51617 bytes

0 commit comments

Comments
 (0)