forked from PrincetonUniversity/PsyNeuLinkView
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#PSYNEU-140 - Fix installation on linux
- Loading branch information
Showing
6 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Metadata-Version: 2.1 | ||
Name: psyneulinkviewer | ||
Version: 0.4.4 | ||
Version: 0.4.5 | ||
Home-page: https://github.com/metacell/psyneulinkviewer | ||
Author: metacell | ||
Author-email: [email protected] | ||
|
@@ -9,4 +9,3 @@ License-File: LICENSE | |
Requires-Dist: requests | ||
Requires-Dist: wget | ||
Requires-Dist: packaging<=24.0 | ||
Requires-Dist: psyneulink |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
requests | ||
wget | ||
packaging<=24.0 | ||
psyneulink |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,14 @@ | |
logger = logging.getLogger(__name__) | ||
logging.basicConfig(level=logging.INFO) | ||
|
||
if not (3, 7) <= sys.version_info < (3, 12): | ||
logging.error('Python version not supported, python 3.7 to 3.11 is required. %f' , sys.version_info) | ||
sys.exit('Python version not supported, 3.7 to 3.11 is required.') | ||
|
||
# Check if running in a conda environment | ||
in_conda = 'CONDA_PREFIX' in os.environ | ||
|
||
if in_conda: | ||
if not (3, 7) <= sys.version_info < (3, 12): | ||
logging.error('Python version not supported, python 3.7 to 3.11 is required. %f' , sys.version_info) | ||
sys.exit('Python version not supported, 3.7 to 3.11 is required.') | ||
|
||
# Define common dependencies | ||
common_requires = [ | ||
'requests', | ||
|
@@ -67,7 +68,7 @@ def run(self): | |
|
||
setup( | ||
name="psyneulinkviewer", | ||
version="0.4.4", | ||
version="0.4.5", | ||
url='https://github.com/metacell/psyneulinkviewer', | ||
author='metacell', | ||
author_email='[email protected]', | ||
|