chibi-github 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.
Files changed (34) hide show
  1. {chibi_github-0.2.0 → chibi_github-0.3.0}/HISTORY.rst +5 -0
  2. {chibi_github-0.2.0 → chibi_github-0.3.0}/PKG-INFO +6 -1
  3. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/__init__.py +1 -1
  4. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/response.py +0 -1
  5. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/serializers.py +2 -1
  6. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/PKG-INFO +6 -1
  7. {chibi_github-0.2.0 → chibi_github-0.3.0}/setup.cfg +1 -1
  8. {chibi_github-0.2.0 → chibi_github-0.3.0}/setup.py +1 -1
  9. {chibi_github-0.2.0 → chibi_github-0.3.0}/AUTHORS.rst +0 -0
  10. {chibi_github-0.2.0 → chibi_github-0.3.0}/CONTRIBUTING.rst +0 -0
  11. {chibi_github-0.2.0 → chibi_github-0.3.0}/LICENSE +0 -0
  12. {chibi_github-0.2.0 → chibi_github-0.3.0}/MANIFEST.in +0 -0
  13. {chibi_github-0.2.0 → chibi_github-0.3.0}/README.rst +0 -0
  14. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/chibi_github.py +0 -0
  15. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/cli.py +0 -0
  16. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/config.py +0 -0
  17. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/exception.py +0 -0
  18. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/urls.py +0 -0
  19. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/SOURCES.txt +0 -0
  20. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/dependency_links.txt +0 -0
  21. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/entry_points.txt +0 -0
  22. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/not-zip-safe +0 -0
  23. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/requires.txt +0 -0
  24. {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/top_level.txt +0 -0
  25. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/Makefile +0 -0
  26. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/authors.rst +0 -0
  27. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/conf.py +0 -0
  28. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/contributing.rst +0 -0
  29. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/history.rst +0 -0
  30. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/index.rst +0 -0
  31. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/installation.rst +0 -0
  32. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/make.bat +0 -0
  33. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/readme.rst +0 -0
  34. {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/usage.rst +0 -0
@@ -2,6 +2,11 @@
2
2
  History
3
3
  =======
4
4
 
5
+ 0.3.0 ( 2026-03-21 )
6
+ --------------------
7
+
8
+ * actualizacion para marshmallow >= 4
9
+
5
10
  0.2.0 ( 2025-09-20 )
6
11
  --------------------
7
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chibi_github
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: libreria para usar github
5
5
  Home-page: https://github.com/dem4ply/chibi_github
6
6
  Author: dem4ply
@@ -62,6 +62,11 @@ Features
62
62
  History
63
63
  =======
64
64
 
65
+ 0.3.0 ( 2026-03-21 )
66
+ --------------------
67
+
68
+ * actualizacion para marshmallow >= 4
69
+
65
70
  0.2.0 ( 2025-09-20 )
66
71
  --------------------
67
72
 
@@ -5,4 +5,4 @@ from chibi_github.chibi_github import Github_api
5
5
  __all__ = [ 'Github_api' ]
6
6
  __author__ = """dem4ply"""
7
7
  __email__ = 'dem4ply@gmail.com'
8
- __version__ = '0.2.0'
8
+ __version__ = '0.3.0'
@@ -11,7 +11,6 @@ class Get( Response ):
11
11
  def raise_when_no_ok( self ):
12
12
  if not self.is_raise_when_no_ok or self.ok:
13
13
  return
14
- http_error_msg = ""
15
14
  if self.status_code == status_code.HTTP_401_UNAUTHORIZED:
16
15
  raise Error_bad_token( response=self, )
17
16
  super().raise_when_no_ok()
@@ -1,4 +1,5 @@
1
1
  from marshmallow import Schema, INCLUDE, fields
2
+ from marshmallow.experimental.context import Context
2
3
 
3
4
 
4
5
  class Github_url( fields.Url ):
@@ -11,7 +12,7 @@ class Github_url( fields.Url ):
11
12
  super()._serialize( value, attr, obj, **kw )
12
13
 
13
14
  def _deserialize( self, value, attr, data, **kw ):
14
- parent = self.context[ 'url' ]
15
+ parent = Context.get()[ 'url' ]
15
16
  value = super()._deserialize( value, attr, data, **kw )
16
17
  return parent.build_from_url( value )
17
18
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chibi_github
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: libreria para usar github
5
5
  Home-page: https://github.com/dem4ply/chibi_github
6
6
  Author: dem4ply
@@ -62,6 +62,11 @@ Features
62
62
  History
63
63
  =======
64
64
 
65
+ 0.3.0 ( 2026-03-21 )
66
+ --------------------
67
+
68
+ * actualizacion para marshmallow >= 4
69
+
65
70
  0.2.0 ( 2025-09-20 )
66
71
  --------------------
67
72
 
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.2.0
2
+ current_version = 0.3.0
3
3
  commit = True
4
4
  tag = True
5
5
 
@@ -38,6 +38,6 @@ setup(
38
38
  name='chibi_github',
39
39
  packages=find_packages(include=['chibi_github', 'chibi_github.*']),
40
40
  url='https://github.com/dem4ply/chibi_github',
41
- version='0.2.0',
41
+ version='0.3.0',
42
42
  zip_safe=False,
43
43
  )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes