Skip to content

Commit

Permalink
Set python-requires metadata to >=3.8
Browse files Browse the repository at this point in the history
xmlschema now requires Python >=3.8 but the package metadata did not get updated. This allow pip to pick and install the 3.x release on Python 3.7 and then xmlschema fails at runtime.
  • Loading branch information
pierreluctg committed Jan 9, 2024
1 parent c8f7339 commit aaf6a97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'xmlschema-json2xml=xmlschema.cli:json2xml',
]
},
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=['elementpath>=4.1.5, <5.0.0'],
extras_require={
'codegen': ['elementpath>=4.1.5, <5.0.0', 'jinja2'],
Expand Down

0 comments on commit aaf6a97

Please sign in to comment.