diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-03-31 02:41:01 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-03-31 02:41:01 (GMT) |
commit | f89d993e076da2ff84e809328862f636c3ce0f81 (patch) | |
tree | 3ce893d4756d86c689d44cbaf2a7a6b96ed5601c /Lib/distutils/dist.py | |
parent | f7eb4faf38fc9e4a215acae3323140b99cdce08f (diff) | |
download | cpython-f89d993e076da2ff84e809328862f636c3ce0f81.zip cpython-f89d993e076da2ff84e809328862f636c3ce0f81.tar.gz cpython-f89d993e076da2ff84e809328862f636c3ce0f81.tar.bz2 |
Back out the requirement to supply a version number
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r-- | Lib/distutils/dist.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index 7ef3a42..1ac9786 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -534,10 +534,6 @@ class Distribution: objects. """ - if self.metadata.version is None: - raise DistutilsSetupError, \ - "No version number specified for distribution" - keywords = self.metadata.keywords if keywords is not None: if type(keywords) is StringType: |