PyInstaller fixes (need older scipy)

pull/193/head
Holger Müller 2020-06-27 14:47:31 +02:00
rodzic bf97feff1a
commit 718e894efc
3 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -14,6 +14,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
import pkg_resources.py2_warn
from NanoVNASaver.__main__ import main from NanoVNASaver.__main__ import main
if __name__ == '__main__': if __name__ == '__main__':

Wyświetl plik

@ -1,4 +1,5 @@
scipy scipy==1.4.1
cython
pyqt5 pyqt5
pyserial pyserial
numpy numpy

Wyświetl plik

@ -42,6 +42,7 @@ setup(
'pyserial', 'pyserial',
'PyQt5', 'PyQt5',
'numpy', 'numpy',
'scipy' 'scipy<1.5',
'cython',
], ],
) )