Skip to content

Commit

Permalink
Imported upstream version '1.14.19' of 'upstream'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Dec 20, 2024
1 parent f0c3f0b commit dac10b3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
ROS_DISTRO: ${{ matrix.ros }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: industrial_ci
uses: ros-industrial/industrial_ci@master
4 changes: 2 additions & 2 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:
name: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pre-commit/[email protected].0
- uses: actions/checkout@v4
- uses: pre-commit/[email protected].1
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
repos:
# Standard hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -27,7 +27,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/pycqa/flake8
rev: 4.0.1
rev: 7.1.1
hooks:
- id: flake8
args:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog for package xacro
^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.14.19 (2024-12-20)
--------------------
* Add function python.vars() (`#348 <https://github.com/ros/xacro/issues/348>`_)
* Contributors: Robert Haschke

1.14.18 (2024-04-02)
--------------------
* Add more unit tags for yaml files (`#331 <https://github.com/ros/xacro/issues/331>`_)
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package>
<name>xacro</name>
<version>1.14.18</version>
<version>1.14.19</version>
<description>Xacro (XML Macros)

Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.
Expand Down
2 changes: 1 addition & 1 deletion src/xacro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def expose(*args, **kwargs):
# Expose all builtin symbols into the python namespace. Thus the stay accessible if the global symbol was overriden
expose('list', 'dict', 'map', 'len', 'str', 'float', 'int', 'True', 'False', 'min', 'max', 'round',
'abs', 'all', 'any', 'complex', 'divmod', 'enumerate', 'filter', 'frozenset', 'hash', 'isinstance', 'issubclass',
'ord', 'repr', 'reversed', 'slice', 'set', 'sum', 'tuple', 'type', 'zip', source=__builtins__, ns='python')
'ord', 'repr', 'reversed', 'slice', 'set', 'sum', 'tuple', 'type', 'vars', 'zip', source=__builtins__, ns='python')

# Expose all math symbols and functions into namespace math (and directly for backwards compatibility -- w/o deprecation)
expose([(k, v) for k, v in math.__dict__.items() if not k.startswith('_')], ns='math', deprecate_msg='')
Expand Down

0 comments on commit dac10b3

Please sign in to comment.