@@ -542,6 +542,20 @@ def add_create_lock_options(cls, create_parser):
542
542
"extras deps that are never activated, but may trim more in the future."
543
543
),
544
544
)
545
+ create_parser .add_argument (
546
+ "--lock-build-systems" ,
547
+ "--no-lock-build-systems" ,
548
+ dest = "lock_build_systems" ,
549
+ default = False ,
550
+ action = HandleBoolAction ,
551
+ type = bool ,
552
+ help = (
553
+ "When creating a lock that includes sdists, VCS requirements or local project "
554
+ "directories that will later need to be built into wheels when using the lock, "
555
+ "also lock the build system for each of these source tree artifacts to ensure "
556
+ "consistent build environments at future times."
557
+ ),
558
+ )
545
559
cls ._add_lock_options (create_parser )
546
560
cls ._add_resolve_options (create_parser )
547
561
cls .add_json_options (create_parser , entity = "lock" , include_switch = False )
@@ -818,6 +832,33 @@ def add_extra_arguments(
818
832
) as sync_parser :
819
833
cls ._add_sync_arguments (sync_parser )
820
834
835
+ def _get_lock_configuration (self , target_configuration ):
836
+ # type: (TargetConfiguration) -> Union[LockConfiguration, Error]
837
+ if self .options .style is LockStyle .UNIVERSAL :
838
+ return LockConfiguration (
839
+ style = LockStyle .UNIVERSAL ,
840
+ requires_python = tuple (
841
+ str (interpreter_constraint .requires_python )
842
+ for interpreter_constraint in target_configuration .interpreter_constraints
843
+ ),
844
+ target_systems = tuple (self .options .target_systems ),
845
+ elide_unused_requires_dist = self .options .elide_unused_requires_dist ,
846
+ lock_build_systems = self .options .lock_build_systems ,
847
+ )
848
+
849
+ if self .options .target_systems :
850
+ return Error (
851
+ "The --target-system option only applies to --style {universal} locks." .format (
852
+ universal = LockStyle .UNIVERSAL .value
853
+ )
854
+ )
855
+
856
+ return LockConfiguration (
857
+ style = self .options .style ,
858
+ elide_unused_requires_dist = self .options .elide_unused_requires_dist ,
859
+ lock_build_systems = self .options .lock_build_systems ,
860
+ )
861
+
821
862
def _resolve_targets (
822
863
self ,
823
864
action , # type: str
@@ -907,28 +948,7 @@ def _create(self):
907
948
target_configuration = target_options .configure (
908
949
self .options , pip_configuration = pip_configuration
909
950
)
910
- if self .options .style == LockStyle .UNIVERSAL :
911
- lock_configuration = LockConfiguration (
912
- style = LockStyle .UNIVERSAL ,
913
- requires_python = tuple (
914
- str (interpreter_constraint .requires_python )
915
- for interpreter_constraint in target_configuration .interpreter_constraints
916
- ),
917
- target_systems = tuple (self .options .target_systems ),
918
- elide_unused_requires_dist = self .options .elide_unused_requires_dist ,
919
- )
920
- elif self .options .target_systems :
921
- return Error (
922
- "The --target-system option only applies to --style {universal} locks." .format (
923
- universal = LockStyle .UNIVERSAL .value
924
- )
925
- )
926
- else :
927
- lock_configuration = LockConfiguration (
928
- style = self .options .style ,
929
- elide_unused_requires_dist = self .options .elide_unused_requires_dist ,
930
- )
931
-
951
+ lock_configuration = try_ (self ._get_lock_configuration (target_configuration ))
932
952
targets = try_ (
933
953
self ._resolve_targets (
934
954
action = "creating" ,
@@ -1491,8 +1511,8 @@ def process_req_edits(
1491
1511
lock_file = attr .evolve (
1492
1512
lock_file ,
1493
1513
pex_version = __version__ ,
1494
- requirements = SortedTuple (requirements_by_project_name .values (), key = str ),
1495
- constraints = SortedTuple (constraints_by_project_name .values (), key = str ),
1514
+ requirements = SortedTuple (requirements_by_project_name .values ()),
1515
+ constraints = SortedTuple (constraints_by_project_name .values ()),
1496
1516
locked_resolves = SortedTuple (
1497
1517
resolve_update .updated_resolve for resolve_update in lock_update .resolves
1498
1518
),
@@ -1576,28 +1596,7 @@ def _sync(self):
1576
1596
target_configuration = target_options .configure (
1577
1597
self .options , pip_configuration = pip_configuration
1578
1598
)
1579
- if self .options .style == LockStyle .UNIVERSAL :
1580
- lock_configuration = LockConfiguration (
1581
- style = LockStyle .UNIVERSAL ,
1582
- requires_python = tuple (
1583
- str (interpreter_constraint .requires_python )
1584
- for interpreter_constraint in target_configuration .interpreter_constraints
1585
- ),
1586
- target_systems = tuple (self .options .target_systems ),
1587
- elide_unused_requires_dist = self .options .elide_unused_requires_dist ,
1588
- )
1589
- elif self .options .target_systems :
1590
- return Error (
1591
- "The --target-system option only applies to --style {universal} locks." .format (
1592
- universal = LockStyle .UNIVERSAL .value
1593
- )
1594
- )
1595
- else :
1596
- lock_configuration = LockConfiguration (
1597
- style = self .options .style ,
1598
- elide_unused_requires_dist = self .options .elide_unused_requires_dist ,
1599
- )
1600
-
1599
+ lock_configuration = try_ (self ._get_lock_configuration (target_configuration ))
1601
1600
lock_file_path = self .options .lock
1602
1601
if os .path .exists (lock_file_path ):
1603
1602
build_configuration = pip_configuration .build_configuration
0 commit comments