Skip to content

Commit

Permalink
deprecation warnings for 0.1.0 (#206)
Browse files Browse the repository at this point in the history
* deprecate skills

deprecate intents

deprecate mk1

Update messagebus.py

Update audioservice.py

Update audioservice.py

Update layers.py

Update api.py

Update layers.py

Update api.py

Update api.py

Update audioservice.py

Update enclosure api.py

* fix tests

* fix tests

* fix tests
  • Loading branch information
JarbasAl authored Dec 28, 2023
1 parent ef22413 commit 7e5e62b
Show file tree
Hide file tree
Showing 23 changed files with 3,509 additions and 3,633 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev swig libssl-dev
sudo apt install python3-dev
- name: Build Source Packages
run: |
python setup.py sdist
Expand All @@ -48,12 +48,3 @@ jobs:
- name: Install package
run: |
pip install .[all]
- uses: pypa/gh-action-pip-audit@v1.0.7
with:
# Ignore setuptools vulnerability we can't do much about
# Ignore requests vulnerability
# Ignore Setuptools vulnerability
ignore-vulns: |
GHSA-r9hx-vwmv-q579
GHSA-j8r2-6x86-q33q
PYSEC-2022-43012
1 change: 1 addition & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
python -m pip install build wheel
- name: Install core repo
run: |
pip install -r requirements/test.txt
pip install -e .[extras]
- name: Install test dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ dist

# Created by unit tests
.pytest_cache/
/.gtm/
2 changes: 2 additions & 0 deletions ovos_utils/enclosure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
from typing import Optional
from ovos_utils.log import LOG, deprecated

LOG.warning("ovos_utils.enclosure has been deprecated! this module will be removed in version 0.1.0")


class MycroftEnclosures(str, Enum):
# TODO: Deprecate in 0.1.0
Expand Down
Loading

0 comments on commit 7e5e62b

Please sign in to comment.