
GITHUB . COM {
}
Detected CMS Systems:
- Wordpress (2 occurrences)
Title:
Spurious "Provides-Extra:" generated in metadata Β· Issue #1292 Β· pypa/setuptools
Description:
In the recently released version of setuptools, when installing my distribution copyingmock, it claims that it provides the extras=['']. Of course, I don't provide the empty-string extr...
Website Age:
17 years and 8 months (reg. 2007-10-09).
Matching Content Categories {π}
- Video & Online Content
- Business & Finance
- Technology & Computing
Content Management System {π}
What CMS is github.com built with?
Github.com employs WORDPRESS.
Traffic Estimate {π}
What is the average monthly size of github.com audience?
ππ Tremendous Traffic: 10M - 20M visitors per month
Based on our best estimate, this website will receive around 10,653,974 visitors per month in the current month.
check SE Ranking
check Ahrefs
check Similarweb
check Ubersuggest
check Semrush
How Does Github.com Make Money? {πΈ}
Subscription Packages {π³}
We've located a dedicated page on github.com that might include details about subscription plans or recurring payments. We identified it based on the word pricing in one of its internal links. Below, you'll find additional estimates for its monthly recurring revenues.How Much Does Github.com Make? {π°}
Subscription Packages {π³}
Prices on github.com are in US Dollars ($).
They range from $4.00/month to $21.00/month.
We estimate that the site has approximately 5,316,204 paying customers.
The estimated monthly recurring revenue (MRR) is $22,328,057.
The estimated annual recurring revenues (ARR) are $267,936,687.
Wordpress Themes and Plugins {π¨}
What WordPress theme does this site use?
It is strange but we were not able to detect any theme on the page.
What WordPress plugins does this website use?
It is strange but we were not able to detect any plugins on the page.
Keywords {π}
bisect, metadata, git, sign, issue, import, projects, copyingmock, navigation, setuptools, pull, requests, actions, security, spurious, providesextra, generated, closed, wimglenn, extras, dont, provide, extra, checkpy, zipfile, sysexit, bad, tagsv, github, labels, milestone, footer, skip, content, menu, product, solutions, resources, open, source, enterprise, pricing, search, jump, pypa, public, notifications, fork, star, code,
Topics {βοΈ}
personal information spurious zipfile import zipfile git bisect activity wimglenn mentioned recently released version dist-info/metadata comment metadata assignees empty-string extra conditional deps feature bad commit labels projects projects milestone metadata = json bisect correct metadata issue __name__ == '__main__' subprocess whl = zipfile 375 revisions left roughly 9 steps py assigned labels milestone relationships metadata['extras'] distribution copyingmock binary copyingmock github setuptools json' sys /check extra ['pip' deps' /copyingmock-0 'copyingmock-0 extras=[''] extras=[] whl' whl sign skip jump generated installing claims provide related install_requires=[
Payment Methods {π}
- Braintree
Questions {β}
- Already have an account?
Schema {πΊοΈ}
DiscussionForumPosting:
context:https://schema.org
headline:Spurious "Provides-Extra:" generated in metadata
articleBody:In the recently released version of setuptools, when installing my distribution [copyingmock](https://pypi.python.org/packages/e7/4b/857c745721ed3d5dc33c426d6e31aaff13a5cd5caaf444117139b2d9936f/copyingmock-0.2.tar.gz#md5=9aa6ba13542d25e527fe358d53cdaf3b), it claims that it provides the `extras=['']`. Of course, I don't provide the empty-string extra, and the correct metadata should be `extras=[]`. This seems to be related to [using the conditional deps feature](https://github.com/wimglenn/copyingmock/blob/c80ec21e80a733138b99eed6020563ceae8c20ef/setup.py#L26), somehow:
install_requires=["mock ; python_version<'3.3'"],
To reproduce the issue, you can get the sdist:
$ pip download copyingmock==0.2 --no-binary copyingmock
Then use `git bisect` with this script:
```
#!/usr/bin/env python
# check.py
import json
import subprocess
import sys
from zipfile import ZipFile
if __name__ == '__main__':
subprocess.check_call(['pip', 'wheel', '--no-deps', '--no-index', './copyingmock-0.2.tar.gz'])
whl = ZipFile('copyingmock-0.2-py2.py3-none-any.whl')
metadata = json.loads(whl.read('copyingmock-0.2.dist-info/metadata.json'))
print(metadata['extras'])
if metadata['extras']:
sys.exit(1)
else:
sys.exit(0)
```
I did bisect and found
$ git bisect start
$ git bisect bad tags/v38.6.0
$ git bisect good tags/v28.8.0
Bisecting: 375 revisions left to test after this (roughly 9 steps)
[2cd7f22eb62b413d65fe4208d66f7e2738f71a56] Correctly honor exist_ok. Ref #1083.
$ git bisect run ./check.py
...
https://github.com/pypa/setuptools/commit/b2ea3c4a20d008622caec445f5b6916ddd420d16 is the first bad commit.
author:
url:https://github.com/wimglenn
type:Person
name:wimglenn
datePublished:2018-03-16T06:26:45.000Z
interactionStatistic:
type:InteractionCounter
interactionType:https://schema.org/CommentAction
userInteractionCount:0
url:https://github.com/1292/setuptools/issues/1292
context:https://schema.org
headline:Spurious "Provides-Extra:" generated in metadata
articleBody:In the recently released version of setuptools, when installing my distribution [copyingmock](https://pypi.python.org/packages/e7/4b/857c745721ed3d5dc33c426d6e31aaff13a5cd5caaf444117139b2d9936f/copyingmock-0.2.tar.gz#md5=9aa6ba13542d25e527fe358d53cdaf3b), it claims that it provides the `extras=['']`. Of course, I don't provide the empty-string extra, and the correct metadata should be `extras=[]`. This seems to be related to [using the conditional deps feature](https://github.com/wimglenn/copyingmock/blob/c80ec21e80a733138b99eed6020563ceae8c20ef/setup.py#L26), somehow:
install_requires=["mock ; python_version<'3.3'"],
To reproduce the issue, you can get the sdist:
$ pip download copyingmock==0.2 --no-binary copyingmock
Then use `git bisect` with this script:
```
#!/usr/bin/env python
# check.py
import json
import subprocess
import sys
from zipfile import ZipFile
if __name__ == '__main__':
subprocess.check_call(['pip', 'wheel', '--no-deps', '--no-index', './copyingmock-0.2.tar.gz'])
whl = ZipFile('copyingmock-0.2-py2.py3-none-any.whl')
metadata = json.loads(whl.read('copyingmock-0.2.dist-info/metadata.json'))
print(metadata['extras'])
if metadata['extras']:
sys.exit(1)
else:
sys.exit(0)
```
I did bisect and found
$ git bisect start
$ git bisect bad tags/v38.6.0
$ git bisect good tags/v28.8.0
Bisecting: 375 revisions left to test after this (roughly 9 steps)
[2cd7f22eb62b413d65fe4208d66f7e2738f71a56] Correctly honor exist_ok. Ref #1083.
$ git bisect run ./check.py
...
https://github.com/pypa/setuptools/commit/b2ea3c4a20d008622caec445f5b6916ddd420d16 is the first bad commit.
author:
url:https://github.com/wimglenn
type:Person
name:wimglenn
datePublished:2018-03-16T06:26:45.000Z
interactionStatistic:
type:InteractionCounter
interactionType:https://schema.org/CommentAction
userInteractionCount:0
url:https://github.com/1292/setuptools/issues/1292
Person:
url:https://github.com/wimglenn
name:wimglenn
url:https://github.com/wimglenn
name:wimglenn
InteractionCounter:
interactionType:https://schema.org/CommentAction
userInteractionCount:0
interactionType:https://schema.org/CommentAction
userInteractionCount:0
External Links {π}(3)
Analytics and Tracking {π}
- Site Verification - Google
Libraries {π}
- Clipboard.js
- D3.js
- Lodash
Emails and Hosting {βοΈ}
Mail Servers:
- aspmx.l.google.com
- alt1.aspmx.l.google.com
- alt2.aspmx.l.google.com
- alt3.aspmx.l.google.com
- alt4.aspmx.l.google.com
Name Servers:
- dns1.p08.nsone.net
- dns2.p08.nsone.net
- dns3.p08.nsone.net
- dns4.p08.nsone.net
- ns-1283.awsdns-32.org
- ns-1707.awsdns-21.co.uk
- ns-421.awsdns-52.com
- ns-520.awsdns-01.net