tracktolib 0.66.2__tar.gz → 0.66.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tracktolib
3
- Version: 0.66.2
3
+ Version: 0.66.3
4
4
  Summary: Utility library for python
5
5
  Keywords: utility
6
6
  Author-email: julien.brayere@tracktor.fr
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tracktolib"
3
- version = "0.66.2"
3
+ version = "0.66.3"
4
4
  authors = [
5
5
  { email = "julien.brayere@tracktor.fr" }
6
6
  ]
@@ -108,7 +108,7 @@ pythonPlatform = "Linux"
108
108
 
109
109
  [tool.commitizen]
110
110
  name = "cz_conventional_commits"
111
- version = "0.66.2"
111
+ version = "0.66.3"
112
112
  tag_format = "$version"
113
113
  version_files = [
114
114
  "pyproject.toml:version"
@@ -1,15 +1,8 @@
1
1
  import datetime as dt
2
- import warnings
3
2
  from io import BytesIO
4
3
  from pathlib import Path
5
4
  from typing import TypedDict, Literal, Callable
6
5
 
7
- warnings.warn(
8
- "tracktolib.s3.s3 is deprecated, use tracktolib.s3.niquests instead",
9
- DeprecationWarning,
10
- stacklevel=2,
11
- )
12
-
13
6
  try:
14
7
  from aiobotocore.client import AioBaseClient
15
8
  except ImportError:
File without changes