File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616requirements :
1717 build :
18- - python
18+ - python {{ pyproject["project"]["requires-python"] }}
1919 {% for dep in pyproject["build-system"]["requires"] %}
2020 - {{ dep.lower() }}
2121 {% endfor %}
@@ -25,7 +25,7 @@ requirements:
2525 {% for dep in pyproject["project"]["dependencies"] %}
2626 - {{ dep.lower() }}
2727 {% endfor %}
28- {% for dep in pyproject["conda"]["environment"]["dependencies"] %}
28+ {% for dep in pyproject["tool"][" conda"]["environment"]["dependencies"] %}
2929 - {{ dep.lower() }}
3030 {% endfor %}
3131
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ where = ["src"]
1212
1313# enable dynamic versioning based on git tags
1414[tool .setuptools_scm ]
15+ # can be empty if no extra settings are needed, presence enables setuptools-scm
1516
1617[project ]
1718name = " openalea.hydroroot"
@@ -27,12 +28,11 @@ description = "OpenAlea.HydroRoot is a hydraulic root architecture modelling and
2728readme = " README.rst"
2829license = " CECILL-C"
2930license-files = [" LICEN[CS]E*" ]
30- requires-python = " >=3.6 "
31+ requires-python = " >=3.9 "
3132classifiers = [
3233 " Intended Audience :: Science/Research" ,
3334 " Intended Audience :: Developers" ,
3435 " Programming Language :: Python :: 3 :: Only" ,
35- " Programming Language :: Python :: 3.8" ,
3636 " Programming Language :: Python :: 3.9" ,
3737 " Programming Language :: Python :: 3.10" ,
3838 " Programming Language :: Python :: 3.11" ,
@@ -51,7 +51,7 @@ dependencies = [
5151
5252
5353# section specific to conda-only distributed package (not used by pip yet)
54- [conda .environment ]
54+ [tool . conda .environment ]
5555channels = [
5656 " openalea3" ,
5757 " conda-forge"
You can’t perform that action at this time.
0 commit comments