Skip to content

Commit 7c06760

Browse files
fix: include charset-normalizer as hidden import in pyinstaller
1 parent 124880d commit 7c06760

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Build Standalone Binary
3535
run: |
36-
pyinstaller --onefile --name mate app/main.py
36+
pyinstaller --onefile --name mate --hidden-import charset_normalizer app/main.py
3737
3838
- name: Test Binary
3939
shell: bash

app/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
help="Show the current [bold cyan]version[/bold cyan] of mate."
118118
)
119119
def version():
120-
TextDisplay.style_text("mate: 1.0.1", style="blue")
120+
TextDisplay.style_text("mate: 1.0.2", style="blue")
121121

122122

123123
# mate about
@@ -139,7 +139,7 @@ def about():
139139
• Abstraction layer over Docker CLI
140140
""",
141141
border_style="gray50",
142-
subtitle="Version 1.0.1"
142+
subtitle="Version 1.0.2"
143143
)
144144

145145
if __name__ == "__main__":

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "devmate"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
description = "The friendly internal developer platform CLI."
99
dependencies = [
1010
"typer[all]",

0 commit comments

Comments
 (0)