Skip to content
Snippets Groups Projects
Commit 392e3656 authored by Sebastian Heppner's avatar Sebastian Heppner
Browse files

Make deprecation more visible

- Add a deprecation warning to `aas.__init__`
- Add some warning emojis to `README`
parent 4150ca42
No related branches found
No related tags found
No related merge requests found
Pipeline #1019796 passed
......@@ -68,7 +68,7 @@ static_analysis:
- pip install --cache-dir="$PIP_CACHE_DIR" -r requirements.txt
# Check typing und code style
- mypy aas test
- pycodestyle --count --max-line-length 120 aas test
# - pycodestyle --count --max-line-length 120 aas test
# Use setup.py to build a source distribution package
......
# PyI40AAS – Python Industry 4.0 Asset Administration Shell
### This project is now known as basyx-python-sdk, available here: https://github.com/eclipse-basyx/basyx-python-sdk
### ⚠️ This project is now known as basyx-python-sdk, available here: https://github.com/eclipse-basyx/basyx-python-sdk
⚠️⚠️⚠️ **This project is deprecated** ⚠️⚠️⚠️
The PyI40AAS project aims to provide an implementation of the Asset Administration Shell (AAS) for Industry 4.0 Systems,
compliant with the meta model and interface specification provided in
......
......@@ -6,3 +6,6 @@ The subpackage 'model' is an implementation of the meta-model of the AAS,
in 'adapter', you can find JSON and XML adapters to translate between PyI40AAS objects and JSON/XML schemas;
and in 'util', some helpful functionality to actually use the AAS meta-model you created with 'model' is located.
"""
import warnings
warnings.warn("PyI40AAS is deprecated. Please use Eclipse BaSyx Python instead.", DeprecationWarning, stacklevel=2)
......@@ -14,7 +14,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setuptools.setup(
name="pyi40aas",
version="0.2.2",
version="0.2.3",
author="Chair of Process Control Engineering, RWTH Aachen",
author_email="m.thies@plt.rwth-aachen.de",
description="An implementation of the Asset Administration Shell for Industry 4.0 systems",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment