Closed
Bug 1483794
Opened 7 years ago
Closed 7 years ago
[mozprocess] Fix classifiers and mark package as universal
Categories
(Testing :: Mozbase, enhancement)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1428713
People
(Reporter: davehunt, Assigned: slepushkin)
References
Details
As a follow-up from bug 1428713 we need to take care of a couple of things before we can release mozprocess v1.0.0:
When attempting a release, I hit the following error:
> HTTPError: 400 Client Error: Invalid value for classifiers. Error: 'Programming Language :: Python :: 3.5Topic :: Software Development :: Libraries :: Python Modules' is not a valid choice for this field for url: https://upload.pypi.org/legacy/
This is because the 'Programming Language :: Python :: 3.5' classifier is missing a trailing comma, meaning it's concatenated with the following classifier.
Also, in order to release a universal package without needing to remember adding `--universal` every time, we should create a `testing/mozbase/mozprocess/setup.cfg` file with the following contents:
```
[bdist_wheel]
universal=1
```
Comment 1•7 years ago
|
||
Given that bug 1428713 has been reopened, I assume we should make this change over there?
Reporter | ||
Comment 2•7 years ago
|
||
I agree, thanks Henrik.
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•