Skip to content

Latest commit

 

History

History
90 lines (66 loc) · 2.71 KB

PythonLibCore-2.1.0.rst

File metadata and controls

90 lines (66 loc) · 2.71 KB

Python Library Core 2.1.0

The `Python Library Core`_ is a generic component making it easier to create bigger Robot Framework test libraries. Python Library Core 2.1.0 is a new release with with Enum conversion and not providing type hints for bool and None default values.

All issues targeted for Python Library Core v2.1.0 can be found from the issue tracker.

If you have pip installed, just run

pip install --upgrade robotframework-robotlibcore

to install the latest available release or use

pip install robotframework-robotlibcore==2.1.0

to install exactly this version. Alternatively you can download the source distribution from PyPI and install it manually.

PythonLibCore 2.1.0 was released on Thursday July 9, 2020. PythonLibCore supports Python 2.7 and 3.6+ and Robot Framework 3.1.2+. This is last release which contains new development for Python 2.7 and users should migrate to Python 3.

Fix typing hints for None and bool types (#60)

PythonLibCore does not anymore provide type hints for bool and None default values in keyword arguments.

Remove static core (#62)

Static core is removed.

param:Optional[x] = None type hint behaves differently than Robot Framework (#64)

This offers better Enum conversion and better typing hints in libdoc for "Optional[x] = None".

ID Type Priority Summary
#60 enhancement critical Fix typing hints for None and bool types
#62 enhancement high Remove static core
#64 enhancement high param:Optional[x] = None type hint behaves differently than Robot Framework

Altogether 3 issues. View on the issue tracker.