-
Notifications
You must be signed in to change notification settings - Fork 27
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
Don't delay daily tags for draft PRs #1191
base: master
Are you sure you want to change the base?
Conversation
119ec32
to
13da381
Compare
4da6e3c
to
c68087e
Compare
OK, seems to be working with the AliPhysics dailies. However, I've had to update to a newer PyGithub version (the older one we were using before doesn't expose a |
No, we don't especially now that all new builds are done on cc7. |
The fix to use only Python 3 is in #1206. |
Draft PRs are not tested until marked as non-draft, so there's no point in waiting for them.
c68087e
to
b390765
Compare
@ktf CI is green now. Is this OK to merge? |
@@ -15,7 +15,7 @@ | |||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: | |||
long_description = f.read() | |||
|
|||
install_requires = ['PyGithub==1.45', 'argparse', 'requests', 'pytz', 's3cmd', | |||
install_requires = ['PyGithub==1.55', 'argparse', 'requests', 'pytz', 's3cmd', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are you sure this works everywhere?
Draft PRs are not tested until marked as non-draft, so there's no point in waiting for them.