Skip to content

Commit

Permalink
Merge pull request #104 from jepler/require-tomli-setup.py
Browse files Browse the repository at this point in the history
require tomli at install time
  • Loading branch information
dhalbert authored Dec 14, 2023
2 parents 9f02e3a + 951b47c commit bcb5427
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 @@ -14,7 +14,7 @@
package_data={'circuitpython_build_tools': ['data/mpy-cross-*']},
zip_safe=False,
python_requires='>=3.7',
install_requires=['Click', 'requests', 'semver'],
install_requires=['Click', 'requests', 'semver', 'tomli; python_version < "3.11"'],
entry_points='''
[console_scripts]
circuitpython-build-bundles=circuitpython_build_tools.scripts.build_bundles:build_bundles
Expand Down

0 comments on commit bcb5427

Please sign in to comment.