This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from beeware/py312-compat
Add Python 3.12 and 3.13 compatibility.
- Loading branch information
Showing
18 changed files
with
324 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Support for Python 3.7 was removed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Support for Python 3.12 was added. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Support for Python 3.13 was added. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
from .glib_events import * # noqa: F401,F403 | ||
from .utils import * # noqa: F401,F403 | ||
|
||
__version__ = "0.6.4" | ||
__all__ = [ | ||
"__version__", | ||
] | ||
|
||
try: | ||
# Read version from SCM metadata | ||
# This will only exist in a development environment | ||
from setuptools_scm import get_version | ||
|
||
# Excluded from coverage because a pure test environment (such as the one | ||
# used by tox in CI) won't have setuptools_scm | ||
__version__ = get_version("../..", relative_to=__file__) # pragma: no cover | ||
except (ModuleNotFoundError, LookupError): # pragma: no cover | ||
# If setuptools_scm isn't in the environment, the call to import will fail. | ||
# If it *is* in the environment, but the code isn't a git checkout (e.g., | ||
# it's been pip installed non-editable) the call to get_version() will fail. | ||
# If either of these occurs, read version from the installer metadata. | ||
from importlib.metadata import version | ||
|
||
__version__ = version("gbulb") |
Oops, something went wrong.