File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 8
8
- " 3.6"
9
9
- " 3.7"
10
10
- " 3.8-dev"
11
- - " pypy3"
12
11
13
12
14
13
branches :
Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ Like the Bitcoin Core codebase CTransaction is immutable and
108
108
CMutableTransaction is mutable; unlike the Bitcoin Core codebase this
109
109
distinction also applies to COutPoint, CTxIn, CTxOut and CTxWitness.
110
110
111
-
112
111
## Endianness Gotchas
113
112
114
113
Rather confusingly Bitcoin Core shows transaction and block hashes as
@@ -217,7 +216,6 @@ skipped):
217
216
* CPython 3.6
218
217
* CPython 3.7
219
218
* CPython 3.8-dev
220
- * PyPy3
221
219
222
220
HTML coverage reports can then be found in the htmlcov/ subdirectory.
223
221
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ Fixes for openssl loading (only relevant for historical signatures:
6
6
- Fix issue with libssl on MacOSX 10.15. by trying to load ` libssl.35 ` first
7
7
- The ` libeay32 ` library is only tried to be loaded on Windows platform
8
8
9
+ Tests for PyPy are removed. The compatibilty of ctypes module in PyPy with ctypes
10
+ in CPython is lacking, and debugging the quirks of PyPy implementation is too costly,
11
+ given that the code that looks good and runs perfectly with CPython fails on PyPy with
12
+ incomprehensive messages. Use PyPy at your own risk, there will likely be bugs around
13
+ ctypes interaction.
14
+
9
15
## v1.1.0
10
16
11
17
Breaking changes:
You can’t perform that action at this time.
0 commit comments