Skip to content

Commit 6be7534

Browse files
authored
Fix pygit2 installation error on Windows (#138)
1 parent e4eb4c9 commit 6be7534

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@
2929
"Programming Language :: Python :: 3.6",
3030
"Programming Language :: Python :: 3.7",
3131
"Programming Language :: Python :: 3.8",
32-
"Programming Language :: Python :: 3.9", ],
32+
"Programming Language :: Python :: 3.9",
33+
"Programming Language :: Python :: 3.10",
34+
"Programming Language :: Python :: 3.11", ],
3335
install_requires=required,
3436
package_data={'fosslight_util': ['resources/frequentLicenselist.json', 'resources/licenses.json']},
3537
include_package_data=True,
3638
extras_require={":python_version<'3.7'": ["pygit2==1.6.1"],
37-
":python_version>'3.6'": ["pygit2==1.10.1"]},
39+
":python_version>='3.7'": ["pygit2>=1.10.1"]},
3840
entry_points={
3941
"console_scripts": [
4042
"fosslight_download = fosslight_util.download:main",

0 commit comments

Comments
 (0)