Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #492 from GingerAvalanche/master
Browse files Browse the repository at this point in the history
cefpython3 py310+ workaround
  • Loading branch information
GingerAvalanche committed Jan 28, 2023
2 parents f1f9b7f + f600c6b commit 11eea95
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bcml"
authors = ["Caleb Smith"]
version = "3.10.4"
version = "3.10.5"
edition = "2021"
readme = "docs/README.md"

Expand Down
2 changes: 1 addition & 1 deletion bcml/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def main(debug: bool = False):
del cefpython3
gui = "cef"
configure_cef(debug)
except ImportError:
except (ImportError, Exception):
from webview.platforms.winforms import _is_chromium

if _is_chromium():
Expand Down
2 changes: 1 addition & 1 deletion bcml/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR=3
_MINOR=10
_PATCH="4"
_PATCH="5"

VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}"
USER_VERSION = f"""{_MAJOR}.{_MINOR}.{_PATCH[0:1]} {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "bcml"
version = "3.10.4"
version = "3.10.5"
description = "A mod manager for The Legend of Zelda: Breath of the Wild"
author = "NiceneNerd"
author_email = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="bcml",
version="3.10.4",
version="3.10.5",
author="NiceneNerd",
author_email="[email protected]",
description="A mod manager for The Legend of Zelda: Breath of the Wild",
Expand Down

0 comments on commit 11eea95

Please sign in to comment.