Skip to content

3.5.6 - Fix loaded-file tracking bug #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- run: |
mk python-release owner=libre-embedded \
repo=vcorelib version=3.5.5
repo=vcorelib version=3.5.6
if: |
matrix.python-version == '3.12'
&& matrix.system == 'ubuntu-latest'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
=====================================
generator=datazen
version=3.2.0
hash=421d7b34876371d796a31491f1d8ada9
hash=c89bbbacb1e3add6d16675763c4fd827
=====================================
-->

# vcorelib ([3.5.5](https://pypi.org/project/vcorelib/))
# vcorelib ([3.5.6](https://pypi.org/project/vcorelib/))

[![python](https://img.shields.io/pypi/pyversions/vcorelib.svg)](https://pypi.org/project/vcorelib/)
![Build Status](https://github.com/libre-embedded/vcorelib/workflows/Python%20Package/badge.svg)
Expand Down
2 changes: 1 addition & 1 deletion local/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
major: 3
minor: 5
patch: 5
patch: 6
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "vcorelib"
version = "3.5.5"
version = "3.5.6"
description = "A collection of core Python utilities."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 2 additions & 2 deletions vcorelib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.2.0
# hash=4472b097c7a885316ad0a94d2348038c
# hash=0f2b660551d2c2c8e2eafd4557e0fca2
# =====================================

"""
Expand All @@ -10,7 +10,7 @@

DESCRIPTION = "A collection of core Python utilities."
PKG_NAME = "vcorelib"
VERSION = "3.5.5"
VERSION = "3.5.6"

# vcorelib-specific content.
DEFAULT_INDENT = 2
Expand Down
4 changes: 0 additions & 4 deletions vcorelib/io/arbiter/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,6 @@ def decode(
logger=logger,
strategy=strategy,
)
if result:
files_loaded.append(include)

for include in consume(
result.data, f"{includes_key}_left", []
Expand All @@ -292,8 +290,6 @@ def decode(
logger=logger,
strategy=strategy,
)
if result:
files_loaded.append(include)

if not result.success:
logger.error("Failed to decode '%s'.", path)
Expand Down