Skip to content

Commit 562403a

Browse files
committed
Update pkginfo library to support newer python packages
closes #689
1 parent 781b976 commit 562403a

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGES/689.feature

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support Python package metadata version 2.3

pulp_python/app/models.py

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ class PythonPackageContent(Content):
159159
metadata_version = models.TextField()
160160
summary = models.TextField()
161161
description = models.TextField()
162+
description_content_type = models.TextField()
162163
keywords = models.TextField()
163164
home_page = models.TextField()
164165
download_url = models.TextField()
@@ -171,6 +172,7 @@ class PythonPackageContent(Content):
171172
project_url = models.TextField()
172173
platform = models.TextField()
173174
supported_platform = models.TextField()
175+
dynamic = models.TextField()
174176
requires_dist = models.JSONField(default=list)
175177
provides_dist = models.JSONField(default=list)
176178
obsoletes_dist = models.JSONField(default=list)

0 commit comments

Comments
 (0)