github3-utils 0.7.0__tar.gz → 0.7.1__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.1
2
2
  Name: github3-utils
3
- Version: 0.7.0
3
+ Version: 0.7.1
4
4
  Summary: Handy utilities for github3.py
5
5
  Author-email: Dominic Davis-Foster <dominic@davis-foster.co.uk>
6
6
  License: MIT
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.7
23
23
  Classifier: Programming Language :: Python :: 3.8
24
24
  Classifier: Programming Language :: Python :: 3.9
25
25
  Classifier: Programming Language :: Python :: 3.10
26
+ Classifier: Programming Language :: Python :: 3.11
26
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
28
  Classifier: Programming Language :: Python :: Implementation :: PyPy
28
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -31,6 +32,7 @@ Requires-Python: >=3.6
31
32
  Requires-Dist: apeye-core>=1.0.0
32
33
  Requires-Dist: attrs>=20.3.0
33
34
  Requires-Dist: click>=7.1.2
35
+ Requires-Dist: cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
34
36
  Requires-Dist: domdf-python-tools>=1.1.0
35
37
  Requires-Dist: github3-py>=1.3.0
36
38
  Requires-Dist: pynacl>=1.4.0
@@ -105,8 +107,8 @@ github3-utils
105
107
  :target: https://github.com/domdfcoding/github3-utils/actions?query=workflow%3A%22mypy%22
106
108
  :alt: mypy status
107
109
 
108
- .. |requires| image:: https://dependency-dash.herokuapp.com/github/domdfcoding/github3-utils/badge.svg
109
- :target: https://dependency-dash.herokuapp.com/github/domdfcoding/github3-utils/
110
+ .. |requires| image:: https://dependency-dash.repo-helper.uk/github/domdfcoding/github3-utils/badge.svg
111
+ :target: https://dependency-dash.repo-helper.uk/github/domdfcoding/github3-utils/
110
112
  :alt: Requirements Status
111
113
 
112
114
  .. |coveralls| image:: https://img.shields.io/coveralls/github/domdfcoding/github3-utils/master?logo=coveralls
@@ -148,7 +150,7 @@ github3-utils
148
150
  .. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/github3-utils
149
151
  :alt: GitHub top language
150
152
 
151
- .. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/github3-utils/v0.7.0
153
+ .. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/github3-utils/v0.7.1
152
154
  :target: https://github.com/domdfcoding/github3-utils/pulse
153
155
  :alt: GitHub commits since tagged version
154
156
 
@@ -156,7 +158,7 @@ github3-utils
156
158
  :target: https://github.com/domdfcoding/github3-utils/commit/master
157
159
  :alt: GitHub last commit
158
160
 
159
- .. |maintained| image:: https://img.shields.io/maintenance/yes/2022
161
+ .. |maintained| image:: https://img.shields.io/maintenance/yes/2023
160
162
  :alt: Maintenance
161
163
 
162
164
  .. |pypi-downloads| image:: https://img.shields.io/pypi/dm/github3-utils
@@ -58,8 +58,8 @@ github3-utils
58
58
  :target: https://github.com/domdfcoding/github3-utils/actions?query=workflow%3A%22mypy%22
59
59
  :alt: mypy status
60
60
 
61
- .. |requires| image:: https://dependency-dash.herokuapp.com/github/domdfcoding/github3-utils/badge.svg
62
- :target: https://dependency-dash.herokuapp.com/github/domdfcoding/github3-utils/
61
+ .. |requires| image:: https://dependency-dash.repo-helper.uk/github/domdfcoding/github3-utils/badge.svg
62
+ :target: https://dependency-dash.repo-helper.uk/github/domdfcoding/github3-utils/
63
63
  :alt: Requirements Status
64
64
 
65
65
  .. |coveralls| image:: https://img.shields.io/coveralls/github/domdfcoding/github3-utils/master?logo=coveralls
@@ -101,7 +101,7 @@ github3-utils
101
101
  .. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/github3-utils
102
102
  :alt: GitHub top language
103
103
 
104
- .. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/github3-utils/v0.7.0
104
+ .. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/github3-utils/v0.7.1
105
105
  :target: https://github.com/domdfcoding/github3-utils/pulse
106
106
  :alt: GitHub commits since tagged version
107
107
 
@@ -109,7 +109,7 @@ github3-utils
109
109
  :target: https://github.com/domdfcoding/github3-utils/commit/master
110
110
  :alt: GitHub last commit
111
111
 
112
- .. |maintained| image:: https://img.shields.io/maintenance/yes/2022
112
+ .. |maintained| image:: https://img.shields.io/maintenance/yes/2023
113
113
  :alt: Maintenance
114
114
 
115
115
  .. |pypi-downloads| image:: https://img.shields.io/pypi/dm/github3-utils
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # __init__.py
4
4
  """
5
- Handy utilities for `github3.py <https://github3py.readthedocs.io/en/master/>`_.
5
+ Handy utilities for `github3.py <https://github3.readthedocs.io/en/latest/>`_.
6
6
  """
7
7
  #
8
8
  # Copyright © 2020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
@@ -75,7 +75,7 @@ from github3_utils.headers import LUKE_CAGE
75
75
  __author__: str = "Dominic Davis-Foster"
76
76
  __copyright__: str = "2020 Dominic Davis-Foster"
77
77
  __license__: str = "MIT License"
78
- __version__: str = "0.7.0"
78
+ __version__: str = "0.7.1"
79
79
  __email__: str = "dominic@davis-foster.co.uk"
80
80
 
81
81
  __all__ = (
@@ -4,7 +4,7 @@ build-backend = "whey"
4
4
 
5
5
  [project]
6
6
  name = "github3-utils"
7
- version = "0.7.0"
7
+ version = "0.7.1"
8
8
  description = "Handy utilities for github3.py"
9
9
  readme = "README.rst"
10
10
  keywords = [ "github",]
@@ -13,6 +13,7 @@ dependencies = [
13
13
  "apeye-core>=1.0.0",
14
14
  "attrs>=20.3.0",
15
15
  "click>=7.1.2",
16
+ 'cryptography<40; implementation_name == "pypy" and python_version <= "3.7"',
16
17
  "domdf-python-tools>=1.1.0",
17
18
  "github3-py>=1.3.0",
18
19
  "pynacl>=1.4.0",
@@ -27,6 +28,7 @@ classifiers = [
27
28
  "Programming Language :: Python",
28
29
  "Programming Language :: Python :: 3 :: Only",
29
30
  "Programming Language :: Python :: 3.10",
31
+ "Programming Language :: Python :: 3.11",
30
32
  "Programming Language :: Python :: 3.6",
31
33
  "Programming Language :: Python :: 3.7",
32
34
  "Programming Language :: Python :: 3.8",
@@ -63,7 +65,7 @@ base-classifiers = [
63
65
  "Topic :: Software Development :: Libraries :: Python Modules",
64
66
  "Typing :: Typed",
65
67
  ]
66
- python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10",]
68
+ python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11",]
67
69
  python-implementations = [ "CPython", "PyPy",]
68
70
  platforms = [ "Windows", "macOS", "Linux",]
69
71
  license-key = "MIT"
@@ -160,7 +162,7 @@ autodoc_exclude_members = [
160
162
  ]
161
163
 
162
164
  [tool.mypy]
163
- python_version = "3.6"
165
+ python_version = "3.8"
164
166
  namespace_packages = true
165
167
  check_untyped_defs = true
166
168
  warn_unused_ignores = true
@@ -1,6 +1,7 @@
1
1
  apeye-core>=1.0.0
2
2
  attrs>=20.3.0
3
3
  click>=7.1.2
4
+ cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
4
5
  domdf-python-tools>=1.1.0
5
6
  github3-py>=1.3.0
6
7
  pynacl>=1.4.0
File without changes