DHI / mikecore-python

MIKE Core in Python
5 stars 0 forks source link

Invalid python versions '>=3.5<' on mikecore (0.2.1) #28

Closed saleemshenlin closed 1 week ago

saleemshenlin commented 2 months ago

i found it in 'setup.py'

setuptools.setup(
    name="mikecore",
    version="0.2.1",
    install_requires=["numpy"],
    author="DHI",
    author_email="mike@dhigroup.com",
    description="MIKE Core contains core libraries, like DFS (Data File System), EUM and more.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/DHI/mikecore-python",
    packages=setuptools.find_packages(),
    license="BSD-3",
    classifiers=[
        "License :: OSI Approved :: BSD License",
        "Programming Language :: Python :: 3",
    ],
    **python_requires=">=3.5<",**
    include_package_data=True,
)

is it correct or not ? my py version is 3.12.3 and use 'poetry' for package management

ecomodeller commented 2 months ago

Yes, it seems like the < should be removed.

I don't use poetry that often, does this version identifier cause problems with poetry?