find_packages_ns not present in 40.0.0, but added to documentation
See original GitHub issueHi,
I see that the method find_pacakges_ns has been added to the documentation for the latest version.
But the code is not included in the 40.0.0 release, although it is part of the master branch.
>>> import setuptools
>>>
>>> setuptools.__version__
'40.0.0'
>>>
>>>
>>> setuptools.find_packages_ns()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'setuptools' has no attribute 'find_packages_ns'
>>>
Support for find_packages_ns is the latest commit on this branch 19 days ago.
And 40.0.0 was released 14 days ago.
Seems like this commit was missed to be included in the release.
-jatin
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Temporary workaround:
I found this in setuptools code:
find_packages_ns = PEP420PackageFinder.find
With the release of 40.1.0,
find_namespace_packages
is now available. Sorry for the delay y’all.