libdev 0.75__tar.gz → 0.76__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.
Files changed (35) hide show
  1. {libdev-0.75 → libdev-0.76}/PKG-INFO +4 -4
  2. {libdev-0.75 → libdev-0.76}/libdev/__init__.py +1 -1
  3. {libdev-0.75 → libdev-0.76}/libdev.egg-info/PKG-INFO +4 -4
  4. libdev-0.76/libdev.egg-info/requires.txt +4 -0
  5. {libdev-0.75 → libdev-0.76}/setup.py +3 -3
  6. libdev-0.75/libdev.egg-info/requires.txt +0 -4
  7. {libdev-0.75 → libdev-0.76}/LICENSE +0 -0
  8. {libdev-0.75 → libdev-0.76}/README.md +0 -0
  9. {libdev-0.75 → libdev-0.76}/libdev/cfg.py +0 -0
  10. {libdev-0.75 → libdev-0.76}/libdev/check.py +0 -0
  11. {libdev-0.75 → libdev-0.76}/libdev/codes.py +0 -0
  12. {libdev-0.75 → libdev-0.76}/libdev/dev.py +0 -0
  13. {libdev-0.75 → libdev-0.76}/libdev/doc.py +0 -0
  14. {libdev-0.75 → libdev-0.76}/libdev/fin.py +0 -0
  15. {libdev-0.75 → libdev-0.76}/libdev/gen.py +0 -0
  16. {libdev-0.75 → libdev-0.76}/libdev/img.py +0 -0
  17. {libdev-0.75 → libdev-0.76}/libdev/lang.py +0 -0
  18. {libdev-0.75 → libdev-0.76}/libdev/num.py +0 -0
  19. {libdev-0.75 → libdev-0.76}/libdev/s3.py +0 -0
  20. {libdev-0.75 → libdev-0.76}/libdev/time.py +0 -0
  21. {libdev-0.75 → libdev-0.76}/libdev.egg-info/SOURCES.txt +0 -0
  22. {libdev-0.75 → libdev-0.76}/libdev.egg-info/dependency_links.txt +0 -0
  23. {libdev-0.75 → libdev-0.76}/libdev.egg-info/top_level.txt +0 -0
  24. {libdev-0.75 → libdev-0.76}/setup.cfg +0 -0
  25. {libdev-0.75 → libdev-0.76}/tests/test_cfg.py +0 -0
  26. {libdev-0.75 → libdev-0.76}/tests/test_check.py +0 -0
  27. {libdev-0.75 → libdev-0.76}/tests/test_codes.py +0 -0
  28. {libdev-0.75 → libdev-0.76}/tests/test_dev.py +0 -0
  29. {libdev-0.75 → libdev-0.76}/tests/test_doc.py +0 -0
  30. {libdev-0.75 → libdev-0.76}/tests/test_gen.py +0 -0
  31. {libdev-0.75 → libdev-0.76}/tests/test_img.py +0 -0
  32. {libdev-0.75 → libdev-0.76}/tests/test_lang.py +0 -0
  33. {libdev-0.75 → libdev-0.76}/tests/test_num.py +0 -0
  34. {libdev-0.75 → libdev-0.76}/tests/test_s3.py +0 -0
  35. {libdev-0.75 → libdev-0.76}/tests/test_time.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: libdev
3
- Version: 0.75
3
+ Version: 0.76
4
4
  Summary: Set of standard functions for development
5
5
  Home-page: https://github.com/kosyachniy/lib
6
6
  Author: Alexey Poloz
@@ -19,9 +19,9 @@ Requires-Python: >=3.7, <4
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE
21
21
  Requires-Dist: requests
22
- Requires-Dist: python-dotenv==1.0.0
23
- Requires-Dist: boto3==1.28.46
24
- Requires-Dist: Pillow==10.0.0
22
+ Requires-Dist: python-dotenv==1.0.1
23
+ Requires-Dist: boto3==1.34.136
24
+ Requires-Dist: Pillow==10.3.0
25
25
 
26
26
  # LibDev
27
27
  Development library — Set of standard functions for development
@@ -2,6 +2,6 @@
2
2
  Initializing the Python package
3
3
  """
4
4
 
5
- __version__ = "0.75"
5
+ __version__ = "0.76"
6
6
 
7
7
  __all__ = ("__version__",)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: libdev
3
- Version: 0.75
3
+ Version: 0.76
4
4
  Summary: Set of standard functions for development
5
5
  Home-page: https://github.com/kosyachniy/lib
6
6
  Author: Alexey Poloz
@@ -19,9 +19,9 @@ Requires-Python: >=3.7, <4
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE
21
21
  Requires-Dist: requests
22
- Requires-Dist: python-dotenv==1.0.0
23
- Requires-Dist: boto3==1.28.46
24
- Requires-Dist: Pillow==10.0.0
22
+ Requires-Dist: python-dotenv==1.0.1
23
+ Requires-Dist: boto3==1.34.136
24
+ Requires-Dist: Pillow==10.3.0
25
25
 
26
26
  # LibDev
27
27
  Development library — Set of standard functions for development
@@ -0,0 +1,4 @@
1
+ requests
2
+ python-dotenv==1.0.1
3
+ boto3==1.34.136
4
+ Pillow==10.3.0
@@ -51,9 +51,9 @@ setup(
51
51
  python_requires=">=3.7, <4",
52
52
  install_requires=[
53
53
  "requests", # Because of conflicts with main repo
54
- "python-dotenv==1.0.0",
55
- "boto3==1.28.46",
56
- "Pillow==10.0.0",
54
+ "python-dotenv==1.0.1",
55
+ "boto3==1.34.136",
56
+ "Pillow==10.3.0",
57
57
  ],
58
58
  project_urls={
59
59
  "Source": "https://github.com/kosyachniy/lib",
@@ -1,4 +0,0 @@
1
- requests
2
- python-dotenv==1.0.0
3
- boto3==1.28.46
4
- Pillow==10.0.0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes