Add project-tools #142

Merged
Francesco Siddi merged 26 commits from ZedDB/blender-studio-pipeline:project-helper-tools into main 2023-08-31 20:33:04 +02:00
2 changed files with 2 additions and 12 deletions
Showing only changes of commit 7e8c0570ac - Show all commits

View File

@ -1,16 +1,10 @@
#!/usr/bin/env python3.11
#!/usr/bin/env python3
import glob
import hashlib
import os
import pathlib
import requests
import sys
MIN_PYTHON = (3, 11)
if sys.version_info < MIN_PYTHON:
sys.exit("Python %s.%s or later is required.\n" % MIN_PYTHON)
DOWNLOAD_DIR = "../../shared/artifacts/addons/"

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python3.11
#!/usr/bin/env python3
import email.utils
import glob
@ -8,11 +8,7 @@ import pathlib
import re
import requests
import shutil
import sys
MIN_PYTHON = (3, 11)
if sys.version_info < MIN_PYTHON:
sys.exit("Python %s.%s or later is required.\n" % MIN_PYTHON)
HOMEPAGE = "https://builder.blender.org/download/"