chore(lora): remove python 3.7+ check

This commit is contained in:
Pierre-Louis 2025-02-28 11:26:54 -05:00 committed by GitHub
parent ae0a39d1b4
commit 3ddd41e288
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,5 @@
# Copyright © 2023-2024 Apple Inc.
import os
import sys
import argparse
import json
@ -18,10 +17,8 @@ from models import LoRALinear
# Disable output buffering to see print statements in real-time
if sys.version_info >= (3, 7):
sys.stdout.reconfigure(line_buffering=True)
else:
sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 1)
sys.stdout.reconfigure(line_buffering=True)
def build_parser():
parser = argparse.ArgumentParser(description="LoRA or QLoRA finetuning.")