Skip to content

Commit

Permalink
#PSYNEU-140 - Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmartin committed Sep 20, 2024
1 parent 8915a64 commit 32932dd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
Binary file removed package/dist/psyneulinkviewer-0.4.3.tar.gz
Binary file not shown.
Binary file added package/dist/psyneulinkviewer-0.4.4.tar.gz
Binary file not shown.
3 changes: 2 additions & 1 deletion package/psyneulinkviewer.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: psyneulinkviewer
Version: 0.4.3
Version: 0.4.4
Home-page: https://github.com/metacell/psyneulinkviewer
Author: metacell
Author-email: [email protected]
Expand All @@ -9,3 +9,4 @@ License-File: LICENSE
Requires-Dist: requests
Requires-Dist: wget
Requires-Dist: packaging<=24.0
Requires-Dist: psyneulink
1 change: 1 addition & 0 deletions package/psyneulinkviewer.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
requests
wget
packaging<=24.0
psyneulink
6 changes: 5 additions & 1 deletion package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
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

Expand Down Expand Up @@ -63,7 +67,7 @@ def run(self):

setup(
name="psyneulinkviewer",
version="0.4.3",
version="0.4.4",
url='https://github.com/metacell/psyneulinkviewer',
author='metacell',
author_email='[email protected]',
Expand Down

0 comments on commit 32932dd

Please sign in to comment.