From e9aa296b398605e81e582dcf8c08e0ebb4515b8d Mon Sep 17 00:00:00 2001 From: Michele Sardo <37845722+msmttchr@users.noreply.github.com> Date: Tue, 11 Jan 2022 16:08:22 +0100 Subject: [PATCH 1/4] Replaced double quote chars This fix allows successfully install in Windows --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e38358b..5b31cd7 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Citing CommPy ------------- If you use CommPy for a publication, presentation or a demo, a citation would be greatly appreciated. A citation example is presented here and we suggest to had the revision or version number and the date: -V. Taranalli, B. Trotobas, and contributors, “CommPy: Digital Communication with Python”. [Online]. Available: github.com/veeresht/CommPy +V. Taranalli, B. Trotobas, and contributors, "CommPy: Digital Communication with Python". [Online]. Available: github.com/veeresht/CommPy I would also greatly appreciate your feedback if you have found CommPy useful. Just send me a mail: veeresht@gmail.com From 719a24494046d500611bb75dee2156ce6d91289b Mon Sep 17 00:00:00 2001 From: Jon McGee Date: Tue, 22 Mar 2022 10:39:34 -0400 Subject: [PATCH 2/4] Separated the string of directories for the files list so that each individual directory is added including the txt files in gallager/wimax --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 501482e..d1dd6de 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ #This is a list of files to install, and where #(relative to the 'root' dir, where setup.py is) #You could be more specific. -files = ["channelcoding/*, channelcoding/tests/*, tests/*, channelcoding/designs/ldpc/gallager/*, channelcoding/designs/ldpc/wimax/*"] +files = ["channelcoding/*", "channelcoding/tests/*", "tests/*", "channelcoding/designs/ldpc/gallager/*", "channelcoding/designs/ldpc/wimax/*"] setup( name=DISTNAME, From 96beca170cff7547711405efda1ae9dc22f19ba0 Mon Sep 17 00:00:00 2001 From: Aaron Holtzman <77404441+aholtzma-am@users.noreply.github.com> Date: Thu, 31 Mar 2022 16:41:58 -0400 Subject: [PATCH 3/4] Remove usage of deprecated np.complex np.complex is just an alias to python builtin `complex` and is deprecated as of numpy 1.20. --- commpy/channels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commpy/channels.py b/commpy/channels.py index 416a901..8481f3f 100644 --- a/commpy/channels.py +++ b/commpy/channels.py @@ -19,7 +19,7 @@ from __future__ import division, print_function # Python 2 compatibility -from numpy import complex, abs, sqrt, sum, zeros, identity, hstack, einsum, trace, kron, absolute, fromiter, array, exp, \ +from numpy import abs, sqrt, sum, zeros, identity, hstack, einsum, trace, kron, absolute, fromiter, array, exp, \ pi, cos from numpy.random import randn, random, standard_normal from scipy.linalg import sqrtm From 87403159aa03cf8208e0d025a14c247bfc90857b Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 6 Apr 2022 11:45:28 -0300 Subject: [PATCH 4/4] Updates the reference URL at the end of the README file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b31cd7..e3b47a3 100644 --- a/README.md +++ b/README.md @@ -131,4 +131,4 @@ V. Taranalli, B. Trotobas, and contributors, "CommPy: Digital Communication with I would also greatly appreciate your feedback if you have found CommPy useful. Just send me a mail: veeresht@gmail.com -For more details on CommPy, please visit http://veeresht.github.com/CommPy +For more details on CommPy, please visit https://veeresht.info/CommPy/