mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 20:27:06 +03:00
a4dc5740f9
Co-Authored-By: Andrew Murray <3112309+radarhere@users.noreply.github.com>
26 lines
720 B
Python
26 lines
720 B
Python
"""
|
|
Print out some handy system info like Travis CI does.
|
|
|
|
This sort of info is missing from GitHub Actions.
|
|
|
|
Requested here:
|
|
https://github.com/actions/virtual-environments/issues/79
|
|
"""
|
|
import os
|
|
import platform
|
|
import sys
|
|
|
|
print("Build system information")
|
|
print()
|
|
|
|
print("sys.version\t\t", sys.version.split("\n"))
|
|
print("os.name\t\t\t", os.name)
|
|
print("sys.platform\t\t", sys.platform)
|
|
print("platform.system()\t", platform.system())
|
|
print("platform.machine()\t", platform.machine())
|
|
print("platform.platform()\t", platform.platform())
|
|
print("platform.version()\t", platform.version())
|
|
print("platform.uname()\t", platform.uname())
|
|
if sys.platform == "darwin":
|
|
print("platform.mac_ver()\t", platform.mac_ver())
|