-
-
Notifications
You must be signed in to change notification settings - Fork 423
Fixed login issue. #999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed login issue. #999
Conversation
…jobs/delete_all_jobs basic functionality.
Hello @agroener! Thanks for updating the PR. Cheers ! There are no PEP8 issues in this Pull Request. 🍻 Comment last updated on November 04, 2017 at 15:11 Hours UTC |
Hi there @agroener 👋 - thanks for the pull request! I'm just a friendly 🤖 that checks for issues related to the changelog and making sure that this pull request is milestoned and labeled correctly. This is mainly intended for the maintainers, so if you are not a maintainer you can ignore this, and a maintainer will let you know if any action is required on your part 😃. Everything looks good from my point of view! 👍 If there are any issues with this message, please report them here. |
@keflavich I noticed there is no official maintainer for this service. Mind if I take over the reigns? I would like to be more proactive with CosmoSim. |
Thanks @agroener! Ideally cosmosim needs to have remote tests, so these regressions would be picked up sooner by CI rather than by our users. I don't know about policies about "official" maintenance on the module level, for best of my knowledge we only have a handful one where the archive providers supports the astroquery module, too (e.g. esasky, gaia, mast). So by all means, please feel free to open PRs for cosmosim, or the rest of astroquery to fix or extend things. |
My pleasure @bsipocz! I have been attempting to include tests for CosmoSim for a while now. My next PR will finally fix all of the login/logout (storing and not storing passwords in keyring) use cases, and I will be sure it includes tests. Thanks for the invite to also contribute to the general astroquery package, too. I am definitely happy to contribute to the project if/when I have the time. |
Also - do you guys generally hit the 'delete branch' button when a PR is merged in? Does it just delete on the remote repo and not on my local repo? |
@agroener yes, it deletes the remote branch, and yes, I do that. I also occasionally delete excess local branches with |
(and I never delete them, but I don't really have a good reason why not, hardly ever went back to an already merged branch) |
I delete them too (but it is never really deleted forever if you can memorize the hash, or so I heard). It comes down to personal preference. 😄 |
This PR contains fixes for:
There are still numerous issues w/ the basic functionality, but it is less broken than it was before. Little by little I intend to fix everything.
Interesting notes:
-> In python3 dict.keys() does not return a list; rather, it returns a dict_keys() object which yields values when you iterate over it.
-> The CosmoSim jobid is now stored as an attribute in the jobref tag, rather than in its own tag like it was before.
Both of these cases can be thought of as "code rot", since this package has not been updated in a while.