Skip to content

Commit

Permalink
python: fix dependency patterns to >=
Browse files Browse the repository at this point in the history
  • Loading branch information
0-wiz-0 committed Oct 23, 2023
1 parent c80ee1b commit 0aa9953
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lang/python/batteries-included.mk
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# $NetBSD: batteries-included.mk,v 1.1 2023/10/23 06:35:59 wiz Exp $
# $NetBSD: batteries-included.mk,v 1.2 2023/10/23 06:46:38 wiz Exp $
#
# Makefile fragment that pulls in the required Python versions
# that provide formerly separately packaged Python modules.

BUILDLINK_API_DEPENDS.python27+= python27-2.7.18nb12
BUILDLINK_API_DEPENDS.python38+= python38-3.8.18nb1
BUILDLINK_API_DEPENDS.python39+= python39-3.9.18nb1
BUILDLINK_API_DEPENDS.python310+= python310-3.10.13nb1
BUILDLINK_API_DEPENDS.python27+= python27>=2.7.18nb12
BUILDLINK_API_DEPENDS.python38+= python38>=3.8.18nb1
BUILDLINK_API_DEPENDS.python39+= python39>=3.9.18nb1
BUILDLINK_API_DEPENDS.python310+= python310>=3.10.13nb1
BUILDLINK_API_DEPENDS.python311+= python311>=3.11.6nb1
BUILDLINK_API_DEPENDS.python312+= python312-3.12.0nb1
BUILDLINK_API_DEPENDS.python312+= python312>=3.12.0nb1

0 comments on commit 0aa9953

Please sign in to comment.