keras-complex icon indicating copy to clipboard operation
keras-complex copied to clipboard

Fixing dependency for Tensorflow

Open casabre opened this issue 2 years ago • 0 comments

It seems that pyproject.toml setting for dependencies is somehow not PEP508 compatible

dependencies = [
    'tensorflow>="2.0.0"',
    'numpy',
    'scipy',
    'scikit-learn',
]

It should be

dependencies = [
    'tensorflow>=2.0.0',
    'numpy',
    'scipy',
    'scikit-learn',
]

casabre avatar Dec 09 '22 18:12 casabre