Skip to content

Commit 4182692

Browse files
authored
Merge pull request #19 from tamnva/development
fix: ray can only be installed with python < 3.12
2 parents 1ebb80e + 740dd76 commit 4182692

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hydroecolstm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.5"
1+
__version__ = "0.3.6"
22
__author__ = 'Tam V. Nguyen'
33
__credits__ = 'Helmholtz Centre for Environmental Research (UFZ)'
44

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='hydroecolstm',
11-
version='0.3.5',
11+
version='0.3.6',
1212
description='A python package for HydroEcological Modelling using LSTM',
1313
long_description=long_description,
1414
long_description_content_type='text/markdown',
@@ -22,7 +22,7 @@
2222
'hydroecolstm.model',
2323
'hydroecolstm.train',
2424
'hydroecolstm.feat_importance'],
25-
python_requires='>=3.8',
25+
python_requires='<=3.12',
2626
install_requires=['pandas',
2727
'numpy',
2828
'torch',

0 commit comments

Comments
 (0)