Skip to content

Commit 4787630

Browse files
committed
Added support for 3.13
1 parent beadc33 commit 4787630

File tree

7 files changed

+21
-12
lines changed

7 files changed

+21
-12
lines changed

.github/workflows/python-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest]
22-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
22+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2323
steps:
2424
- uses: actions/checkout@v3
2525
- name: Set up Python ${{ matrix.python-version }}
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Python ${{ matrix.python-version }}
4848
uses: actions/setup-python@v4
4949
with:
50-
python-version: "3.10"
50+
python-version: "3.12"
5151
- name: Install pandoc
5252
run: sudo apt-get install -y pandoc notification-daemon
5353
- name: Install ${{ env.package }}

pyproject.toml

-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ classifiers = [
2929
"Intended Audience :: Developers",
3030
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.8",
33-
"Programming Language :: Python :: 3.9",
34-
"Programming Language :: Python :: 3.10",
35-
"Programming Language :: Python :: 3.11",
36-
"Programming Language :: Python :: 3.12",
3732
"Topic :: Software Development :: Libraries :: Python Modules",
3833
]
3934
dependencies = [

src/tinyscript/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.30.16
1+
1.30.17

src/tinyscript/__info__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
__copyright__ = "© {} A. D'Hondt".format([__y, __s + "-" + __y][__y != __s])
1313
__email__ = "alexandre.dhondt@gmail.com"
1414
__license__ = "GPLv3+ (https://www.gnu.org/licenses/gpl-3.0.fr.html)"
15-
__source__ = "https://github.com/dhondta/python-pybots"
15+
__source__ = "https://github.com/dhondta/python-tinyscript"
1616

1717
with open(os.path.join(os.path.dirname(__file__), "VERSION.txt")) as f:
1818
__version__ = f.read().strip()

src/tinyscript/helpers/common.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ def index(self, value):
9494
def set_exception(name, etype="ValueError"):
9595
""" Set a custom exception in the builtins. """
9696
if not hasattr(builtins, name):
97-
exec("class %s(%s): __module__ = 'builtins'" % (name, etype))
98-
setattr(builtins, name, locals()[name])
97+
ns = {}
98+
exec(f"class {name}({etype}): __module__ = 'builtins'", {}, ns)
99+
setattr(builtins, name, ns[name])
99100
set_exception("RequirementError", "ImportError")
100101

101102

src/tinyscript/helpers/path.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def walk(self, breadthfirst=True, filter_func=lambda p: True, sort=True, base_cl
343343

344344

345345
class ConfigPath(Path):
346-
""" Extension of the class Path for handling a temporary path.
346+
""" Extension of the class Path for handling a configuration path under user's home folder.
347347
348348
:param app: application name for naming the config file or folder
349349
:param file: whether the target should be a config file or folder

src/tinyscript/preimports/log.py

+13
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@
2323
logging.nullLogger.addHandler(logging.NullHandler())
2424

2525

26+
try:
27+
logging._acquireLock
28+
except AttributeError:
29+
def _acquireLock():
30+
if logging._lock:
31+
logging._lock.acquire()
32+
logging._acquireLock = _acquireLock
33+
def _releaseLock():
34+
if logging._lock:
35+
logging._lock.release()
36+
logging._releaseLock = _releaseLock
37+
38+
2639
def __del(d, k):
2740
try:
2841
if isinstance(d, dict):

0 commit comments

Comments
 (0)