Skip to content

Commit

Permalink
lower python require to 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
LeiShi1313 committed Oct 12, 2021
1 parent 31919c7 commit d4963f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include pyproject.toml
exclude usage.gif
2 changes: 1 addition & 1 deletion differential/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def execute(binary_name: str, args: str, abort: bool = False) -> str:
return ''
cmd = f'"{executable}" {args}'
logger.trace(cmd)
proc = subprocess.run(cmd, shell=True, capture_output=True)
proc = subprocess.run(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
logger.trace(proc)
return "\n".join([proc.stdout.decode(), proc.stderr.decode()])

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.7",
python_requires=">=3.6.2",
install_requires=[
"loguru>=0.5.0",
"Pillow>=8.0.0",
Expand Down

0 comments on commit d4963f2

Please sign in to comment.