Skip to content

Commit b14ad7d

Browse files
deps: fix build for Python 3.6
Even though Python 3.6 had reached its EOL in 2021-12-23 [1], it doesn't seem too hard to restore its support for now. 1. https://devguide.python.org/versions/
1 parent 717f275 commit b14ad7d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ def get_dependencies(filename):
112112
command_options=command_options,
113113
install_requires=get_dependencies('requirements.txt'),
114114
setup_requires=[
115+
'packaging==21.3',
115116
'setuptools_scm==6.4.2',
116117
],
117118
python_requires='>=3.6',

0 commit comments

Comments
 (0)