Skip to content

Commit c06c076

Browse files
committed
Version 2.2.0:
- Changed the BLAST execution to be multi-processed. Added a command-line argument -cores <umber of cores> for the BLAST execution. - Removed the special conda environment file for linux. Now there is one environment file (clans_2_2.yml) that uses the conda-forge channel for all the OS. - Changed the version of the numba package to 0.53.
1 parent 17b0680 commit c06c076

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

clans/clans/GUI/main_window.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import time
99
import re
1010
import os
11+
import sys
1112
import clans.config as cfg
1213
import clans.clans.io.io_gui as io
1314
import clans.clans.io.file_formats.clans_format as clans_format
@@ -161,8 +162,7 @@ def __init__(self):
161162
self.save_image_submenu.addAction(self.save_stereo_image_action)
162163

163164
self.quit_action = QAction("Quit", self)
164-
self.quit_action.triggered.connect(qApp.quit)
165-
165+
self.quit_action.triggered.connect(QApplication.quit)
166166
self.file_menu.addAction(self.quit_action)
167167

168168
# Create the Configuration menu

clans_2_2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: clans_2_2
22
channels:
33
- conda-forge
44
dependencies:
5-
- numba=0.50
5+
- numba=0.53
66
- mkl
77
- vispy
88
- pyqt

0 commit comments

Comments
 (0)