Closed saleemshenlin closed 3 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
Yes, it seems like the < should be removed.
<
I don't use poetry that often, does this version identifier cause problems with poetry?
poetry
i found it in 'setup.py'
is it correct or not ? my py version is 3.12.3 and use 'poetry' for package management