Skip to content

Commit

Permalink
fix(release): Fix/configure version locations
Browse files Browse the repository at this point in the history
Signed-off-by: Sietze van Buuren <[email protected]>
  • Loading branch information
swvanbuuren committed Aug 16, 2024
1 parent ab7b3cf commit 31e434b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pqthreads/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
""" Pqthreads """

__version__ = '0.3.1'
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pqthreads"
version = "0.3.0"
version = "0.3.1"
description = "Expose class interfaces from the main GUI Thread in another QThread in Qt for Python"
readme = "README.md"
license = { file = "LICENSE" }
Expand All @@ -29,3 +29,7 @@ dependencies = [

[tool.setuptools.packages.find]
include = ["pqthreads", "pqthreads.*"]

[tool.semantic_release]
version_variables = ["pqthreads/__init__.py:__version__"]
version_toml = ["pyproject.toml:project.version"]

0 comments on commit 31e434b

Please sign in to comment.