bencoder.pyx 3.0.1__tar.gz → 3.0.2__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
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: bencoder.pyx
3
- Version: 3.0.1
3
+ Version: 3.0.2
4
4
  Summary: Yet another bencode implementation in Cython
5
5
  Home-page: https://github.com/whtsky/bencoder.pyx
6
6
  Author: whtsky
@@ -17,24 +17,34 @@ Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Cython
18
18
  Classifier: Programming Language :: Python
19
19
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.6
21
- Classifier: Programming Language :: Python :: 3.7
22
- Classifier: Programming Language :: Python :: 3.8
23
- Classifier: Programming Language :: Python :: 3.9
24
20
  Classifier: Programming Language :: Python :: 3.10
25
21
  Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
26
24
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
25
  Classifier: Programming Language :: Python :: Implementation :: PyPy
28
26
  Classifier: Intended Audience :: Developers
29
27
  Classifier: Topic :: Software Development :: Libraries
30
28
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
29
  Classifier: Topic :: Utilities
30
+ Requires-Python: >=3.10
32
31
  License-File: LICENSE
32
+ Dynamic: author
33
+ Dynamic: author-email
34
+ Dynamic: classifier
35
+ Dynamic: description
36
+ Dynamic: home-page
37
+ Dynamic: keywords
38
+ Dynamic: license
39
+ Dynamic: license-file
40
+ Dynamic: platform
41
+ Dynamic: requires-python
42
+ Dynamic: summary
33
43
 
34
44
  Bencoder.pyx
35
45
  ============
36
46
 
37
- A fast bencode implementation in Cython supports both Python2 & Python3 .
47
+ A fast bencode implementation in Cython for Python 3.
38
48
 
39
49
  .. image:: https://img.shields.io/pypi/l/bencoder.pyx.svg
40
50
  :alt: PyPI License
@@ -74,11 +84,19 @@ Usage
74
84
  ChangeLog
75
85
  ----------
76
86
 
87
+ Version 3.0.2
88
+ ~~~~~~~~~~~~~~~
89
+
90
+ + Drop support for Python 3.6–3.9, require Python >= 3.10
91
+ + Add support for Python 3.12 & 3.13
92
+ + Fix Cython 3 build
93
+
77
94
  Version 3.0.1
78
95
  ~~~~~~~~~~~~~~~
96
+
79
97
  + Add support for Python 3.11
80
98
 
81
- Versoin 3.0.0
99
+ Version 3.0.0
82
100
  ~~~~~~~~~~~~~~~
83
101
 
84
102
  + Add support for Python 3.9 & 3.10
@@ -1,7 +1,7 @@
1
1
  Bencoder.pyx
2
2
  ============
3
3
 
4
- A fast bencode implementation in Cython supports both Python2 & Python3 .
4
+ A fast bencode implementation in Cython for Python 3.
5
5
 
6
6
  .. image:: https://img.shields.io/pypi/l/bencoder.pyx.svg
7
7
  :alt: PyPI License
@@ -41,11 +41,19 @@ Usage
41
41
  ChangeLog
42
42
  ----------
43
43
 
44
+ Version 3.0.2
45
+ ~~~~~~~~~~~~~~~
46
+
47
+ + Drop support for Python 3.6–3.9, require Python >= 3.10
48
+ + Add support for Python 3.12 & 3.13
49
+ + Fix Cython 3 build
50
+
44
51
  Version 3.0.1
45
52
  ~~~~~~~~~~~~~~~
53
+
46
54
  + Add support for Python 3.11
47
55
 
48
- Versoin 3.0.0
56
+ Version 3.0.0
49
57
  ~~~~~~~~~~~~~~~
50
58
 
51
59
  + Add support for Python 3.9 & 3.10