diff options
| author | Mick Koch <mick@kochm.co> | 2019-10-28 18:45:42 -0400 |
|---|---|---|
| committer | Mick Koch <mick@kochm.co> | 2019-10-28 18:49:31 -0400 |
| commit | 4a31168e517134529c229b310e89039323fdb02f (patch) | |
| tree | 0302e4e6c80ea18563fbd927eba955a3c85205b3 /setuptools/dist.py | |
| parent | 648dfe5afea3bf2a690c9267131a503bcd37d289 (diff) | |
| download | python-setuptools-git-4a31168e517134529c229b310e89039323fdb02f.tar.gz | |
Use an OrderedSet for accumulating license files
Diffstat (limited to 'setuptools/dist.py')
| -rw-r--r-- | setuptools/dist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index fb379a20..0f3f7322 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -409,7 +409,7 @@ class Distribution(_Distribution): 'long_description_content_type': None, 'project_urls': dict, 'provides_extras': ordered_set.OrderedSet, - 'license_files': list, + 'license_files': ordered_set.OrderedSet, } _patched_dist = None |
