Skip to content

Commit

Permalink
Bump version to 0.6.3, update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescoCeruti committed Apr 13, 2024
1 parent 624b205 commit d8baef5
Show file tree
Hide file tree
Showing 7 changed files with 271 additions and 98 deletions.
1 change: 1 addition & 0 deletions dist/linuxshowplayer.metainfo.xml
Expand Up @@ -37,6 +37,7 @@
<url type="help">https://linux-show-player-users.readthedocs.io/en/latest/index.html</url>
<url type="translate">https://crowdin.com/project/linux-show-player</url>
<releases>
<release version="0.6.3" date="2024-04-13" />
<release version="0.6.2" date="2024-03-09" />
<release version="0.6.1" date="2024-03-02" />
<release version="0.6" date="2023-12-10" />
Expand Down
2 changes: 1 addition & 1 deletion docs/user/conf.py
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version.
version = "0.6"
# The full version, including alpha/beta/rc tags.
release = "0.6.2"
release = "0.6.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion lisp/__init__.py
Expand Up @@ -24,7 +24,7 @@
__email__ = "ceppofrancy@gmail.com"
__url__ = "https://github.com/FrancescoCeruti/linux-show-player"
__license__ = "GPLv3"
__version_info__ = (0, 6, 1)
__version_info__ = (0, 6, 3)
__version__ = ".".join(map(str, __version_info__))

# The version passed follows <major>.<minor>
Expand Down
181 changes: 158 additions & 23 deletions poetry.lock

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "linux-show-player"
version = "0.6.2"
version = "0.6.3"
description = "Cue player for stage productions"
authors = ["Francesco Ceruti <ceppofrancy@gmail.com>"]
license = "GPLv3"
Expand All @@ -27,16 +27,17 @@ appdirs = "^1.4.1"
cython = "^0.29"
falcon = "^3.0"
jack-client = "^0.5"
mido = "^1.2"
mido = "^1.3"
pygobject = "^3.30"
pyqt5 = "^5.15.2"
pyqt5-qt5 = "5.15.2"
python-rtmidi = "^1.1"
requests = "^2.20"
sortedcontainers = "^2.0"
humanize = "^4.8.0"
pyalsa = { git = "https://github.com/alsa-project/alsa-python.git", tag = "v1.2.7" }
# Use a pyliblo fork that define dependecies correctly
# pyalsa is currently broken for python >= 3.12
pyalsa = { git = "https://github.com/alsa-project/alsa-python.git", tag = "v1.2.7", python = "<3.12" }
# use a pyliblo fork that define dependecies correctly
pyliblo3 = { git = "https://github.com/FrancescoCeruti/pyliblo3", rev = "0d943a4695d797827584be4ac8f4cb2137172a96" }

[tool.poetry.group.docs]
Expand All @@ -52,6 +53,7 @@ sphinx-inline-tabs = "^2023.4.21"
[tool.poetry.group.dev.dependencies]
toml = "*"
packaging = "*"
black = "*"

[tool.poetry.scripts]
linux-show-player = "lisp.main:main"
Expand Down
12 changes: 6 additions & 6 deletions scripts/flatpak/org.linuxshowplayer.LinuxShowPlayer.json
Expand Up @@ -55,8 +55,8 @@
"sources": [
{
"type": "archive",
"url": "https://files.pythonhosted.org/packages/6d/13/57481471e0535151686ce18bb7e74a4884519474408872ffaca7732f9946/python_rtmidi-1.5.6.tar.gz",
"sha256": "b2a0a399bb4a5e1a56477798afd41d022a18b5e954f6d0ff92b45bb99bee3710"
"url": "https://files.pythonhosted.org/packages/dd/ee/0f91965dcc471714c69df21e5ca3d94dc81411b7dee2d31ff1184bea07c9/python_rtmidi-1.5.8.tar.gz",
"sha256": "7f9ade68b068ae09000ecb562ae9521da3a234361ad5449e83fc734544d004fa"
}
]
},
Expand Down Expand Up @@ -160,16 +160,16 @@
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/bf/d4/ce72ac247f414d15ff046f0926b76eb42bd743e83c1df28e856f328e3db1/poetry_core-1.7.0-py3-none-any.whl",
"sha256": "38e174cdb00a84ee4a1cab66a378b435747f72414f5573bc18cfc3850a94df38"
"url": "https://files.pythonhosted.org/packages/f2/db/20a9f9cae3f3c213a8c406deb4395698459fd96962cea8f2ccb230b1943c/poetry_core-1.9.0.tar.gz",
"sha256": "fa7a4001eae8aa572ee84f35feb510b321bd652e5cf9293249d62853e1f935a2"
}
]
},
{
"name": "python-packaging",
"buildsystem": "simple",
"build-commands": [
"pip3 install --no-index --no-build-isolation --ignore-installed --find-links=\"file://${PWD}\" --prefix=\"${FLATPAK_DEST}\" packaging"
"pip3 install --no-index --no-build-isolation --force-reinstall --find-links=\"file://${PWD}\" --prefix=\"${FLATPAK_DEST}\" packaging"
],
"sources": [
{
Expand Down Expand Up @@ -201,4 +201,4 @@
]
}
]
}
}

0 comments on commit d8baef5

Please sign in to comment.