monkeytoolbox 0.2.0__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,6 +7,11 @@ Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
7
7
  the [PEP 440 version scheme](https://peps.python.org/pep-0440/#version-scheme).
8
8
 
9
9
 
10
+ ## [v0.3.0 - 2024-01-16]
11
+ ### Fixed
12
+ - The location of the `py.typed` file so that type checking is now properly
13
+ supported
14
+
10
15
  ## [v0.2.0 - 2024-01-04]
11
16
  ### Added
12
17
  - `get_os_version()`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: monkeytoolbox
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Miscellaneous convenience utilities for Python programs
5
5
  Home-page: https://github.com/guardicode/monkeytoolbox
6
6
  License: GPLv3
@@ -2,7 +2,7 @@ import threading
2
2
  from functools import wraps
3
3
  from typing import Any, Callable
4
4
 
5
- from egg_timer import EggTimer
5
+ from eggtimer import EggTimer
6
6
 
7
7
 
8
8
  def request_cache(ttl: float):
File without changes
@@ -43,7 +43,7 @@ paths = ["monkeytoolbox", "vulture_allowlist.py"]
43
43
 
44
44
  [tool.poetry]
45
45
  name = "monkeytoolbox"
46
- version = "v0.2.0"
46
+ version = "v0.3.0"
47
47
  description = "Miscellaneous convenience utilities for Python programs"
48
48
  authors = [
49
49
  "Ilija Lazoroski <ilija.la@live.com>",
File without changes
File without changes