Skip to content

Commit

Permalink
Version 2.2.0:
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
inbalpaz committed Nov 25, 2024
1 parent 17b0680 commit c06c076
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clans/clans/GUI/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import time
import re
import os
import sys
import clans.config as cfg
import clans.clans.io.io_gui as io
import clans.clans.io.file_formats.clans_format as clans_format
Expand Down Expand Up @@ -161,8 +162,7 @@ def __init__(self):
self.save_image_submenu.addAction(self.save_stereo_image_action)

self.quit_action = QAction("Quit", self)
self.quit_action.triggered.connect(qApp.quit)

self.quit_action.triggered.connect(QApplication.quit)
self.file_menu.addAction(self.quit_action)

# Create the Configuration menu
Expand Down
2 changes: 1 addition & 1 deletion clans_2_2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: clans_2_2
channels:
- conda-forge
dependencies:
- numba=0.50
- numba=0.53
- mkl
- vispy
- pyqt
Expand Down

0 comments on commit c06c076

Please sign in to comment.