Skip to content

Commit

Permalink
Merge pull request #20 from OpenVoiceOS/release-0.1.4a1
Browse files Browse the repository at this point in the history
Release 0.1.4a1
  • Loading branch information
JarbasAl authored Oct 16, 2024
2 parents 7b86743 + abcedca commit 4506109
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [0.1.2a1](https://github.com/OpenVoiceOS/skill-ovos-youtube-music/tree/0.1.2a1) (2024-10-15)
## [0.1.4a1](https://github.com/OpenVoiceOS/skill-ovos-youtube-music/tree/0.1.4a1) (2024-10-16)

[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-youtube-music/compare/0.1.1...0.1.2a1)
[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-youtube-music/compare/0.1.3...0.1.4a1)

**Merged pull requests:**

- fix:update\_requirements [\#17](https://github.com/OpenVoiceOS/skill-ovos-youtube-music/pull/17) ([JarbasAl](https://github.com/JarbasAl))
- fix:update\_requirements [\#19](https://github.com/OpenVoiceOS/skill-ovos-youtube-music/pull/19) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ovos-utils >= 0.1.0
ovos-bus-client>=0.0.9
ovos-workshop>=0.0.16
ovos-workshop>=0.0.16,<2.0.0
tutubo>=2.0.2
18 changes: 15 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from os.path import dirname, join

from setuptools import setup
import os

URL = "https://github.com/OpenVoiceOS/skill-ovos-youtube-music"
SKILL_CLAZZ = "YoutubeMusicSkill" # needs to match __init__.py class name
Expand Down Expand Up @@ -55,6 +56,19 @@ def get_version():
return version


def get_requirements(requirements_filename: str):
requirements_file = path.join(path.abspath(path.dirname(__file__)),
requirements_filename)
with open(requirements_file, 'r', encoding='utf-8') as r:
requirements = r.readlines()
requirements = [r.strip() for r in requirements if r.strip()
and not r.strip().startswith("#")]
if 'MYCROFT_LOOSE_REQUIREMENTS' in os.environ:
print('USING LOOSE REQUIREMENTS!')
requirements = [r.replace('==', '>=').replace('~=', '>=') for r in requirements]
return requirements


setup(
name=PYPI_NAME,
version=get_version(),
Expand All @@ -67,9 +81,7 @@ def get_version():
author_email='[email protected]',
license='Apache-2.0',
include_package_data=True,
install_requires=["ovos-plugin-manager>=0.0.1a3",
"tutubo",
"ovos_workshop~=0.0,>=0.0.5"],
install_requires=get_requirements("requirements.txt"),
keywords='ovos skill plugin',
entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT}
)
4 changes: 2 additions & 2 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_BUILD = 3
VERSION_ALPHA = 0
VERSION_BUILD = 4
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 4506109

Please sign in to comment.