Re: [python-committers] UPDATE 1: Core sprint 2017 - Sep 4 - Sep 9, Menlo Park, California
On 2017-07-12 13:55, Łukasz Langa wrote: > Update: the sprint is on! > > *Good news*: Facebook is covering the venue, food and hotel costs. This > is confirmed. I'm working on getting a PSF grant for flights like last year. > > *Please book your* *airplane tickets* as soon as possible. Like last > year, we can reimburse up to *$500* for domestic roundtrip flights and > up to *$1500* for international roundtrip flights. If that’s not enough > to get you to California and back, let me know and we’ll figure > something out. Send me the receipts my way, you should get your money > back before the event, preferably as soon as I get the grant wired. For > sums smaller than $500, provide me with a PayPal e-mail. For larger > ones, I will need your details to set up a wire transfer. I will use > TransferWise for the latter to cut down the wire costs. * I recommend > flying in on Sunday and flying out on Saturday.* > > *Please DO NOT book hotels*, Facebook is covering this, preferably in > the same hotel as close to Facebook HQ as possible. NOTE: I cannot > confirm your hotel room until I have your flight information. Hi Łukasz, do you have any news on the hotel? Several attendees including me use ESTA to travel into the US. We are required to provide Advanced Passenger Information (API) a couple of days up front. API also include the location of the first accommodation. As far as I remember, I have to provide the name and address of the hotel by the end of the week. Regards, Christian ___ python-committers mailing list [email protected] https://mail.python.org/mailman/listinfo/python-committers Code of Conduct: https://www.python.org/psf/codeofconduct/
[python-committers] Travis CI build on python/cpython passes in error
I don't know if this is specific to my pull request but on PR #2558 I'm seeing: fatal: Invalid symmetric difference expression 49f6449ef4b81537c19b82329caaf60596c516c2...7b634956246bc6112a16ba11ff9f721342e750e6 <>Only docs were updated, stopping build process. The build is subsequently marked as green. This is invalid, there were code changes in the pull request. - Ł signature.asc Description: Message signed with OpenPGP ___ python-committers mailing list [email protected] https://mail.python.org/mailman/listinfo/python-committers Code of Conduct: https://www.python.org/psf/codeofconduct/
Re: [python-committers] Travis CI build on python/cpython passes in error
The Travis CI config runs the command: git diff --name-only 49f6449ef4b81537c19b82329caaf60596c516c2...d0c822cded495409b68432fa10f9573417ca1fb7 Git fails with "fatal: Invalid symmetric difference expression (...)" if it doesn't know one or both sha1. The first problem is that 49f6449ef4b81537c19b82329caaf60596c516c2 is "old" (Date: Sun Jul 16 07:29:16 2017), whereas Travis CI only gets the 50 latest commits: git clone --depth=50 https://github.com/python/cpython.git python/cpython I tested: 50 is not enough to get this commit. haypo@selma$ git clone --depth=50 https://github.com/python/cpython.git python/cpython haypo@selma$ cd python/cpython/ haypo@selma$ git show 49f6449ef4b81537c19b82329caaf60596c516c2 fatal: bad object 49f6449ef4b81537c19b82329caaf60596c516c2 If "git diff" fails, we should simply run all tests. Victor ___ python-committers mailing list [email protected] https://mail.python.org/mailman/listinfo/python-committers Code of Conduct: https://www.python.org/psf/codeofconduct/
