Message7169
Hi John:
I assume this:
hg status --rev 1.6.0:tip | sed -ne 's/^A //p' | while read i ; \
do echo $i; grep "$i" MANIFEST; done | uniq -c
should change to
hg status --rev 2.0.0:tip| sed -ne 's/^A //p' | while read i ;
do echo $i; grep "$i" roundup.egg-info/SOURCES.txt; done | uniq -c
replacing MANIFEST. Also is looks like MANIFEST.in is still
valid for setuptools. I assume the reference for changing
MANIFEST.in should change from:
http://docs.python.org/2/distutils/sourcedist.html#manifest-template
to:
https://packaging.python.org/guides/using-manifest-in/#using-manifest-
in
correct?
Also I was able to use:
python3 setup.py sdist --repository test --sign
successfully. I also did a purse sdist and tested the tarball. All
tests passed.
I also was able to:
python3 setup.py bdist_egg --repository test --sign
python3 setup.py bdist_wheel --repository test --sign
and it seems to work on test.pypi.org.
Do you have a reference on how I can test these? Something similar to
(your) step 11 in RELEASE.txt would be good. I don't want egg (ahem)
on my face if I deploy these methods.
Have a great day.
-- rouilj |
|
Date |
User |
Action |
Args |
2021-04-05 21:20:27 | rouilj | set | messageid: <1617657627.95.0.0649882382127.issue2550899@roundup.psfhosted.org> |
2021-04-05 21:20:27 | rouilj | set | recipients:
+ rouilj, schlatterbeck, techtonik, jerrykan, pcaulagi |
2021-04-05 21:20:27 | rouilj | link | issue2550899 messages |
2021-04-05 21:20:27 | rouilj | create | |
|