-
Notifications
You must be signed in to change notification settings - Fork 38
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
Support millisecond intervals #76
Conversation
@vutran1710 This seems like a CI issue rather than a problem with my changes? |
Yeah, that appears to be an issue with poetry 1.2 dropping support for python 3.6: That doesn't have anything to do with your changes, but the solution would be to either revert to poetry 1.1, or drop support for python 3.6. I made a separate PR for this: #77 |
@judahrand you are gonna need to bump your version |
d655a11
to
2bd3798
Compare
This should be find now given that it was updated on |
@JWCook CI still seems broken? |
Hmm, the master branch build succeeded, and this looks like a different error:
Somehow the virtualenv's interpreter is missing? I don't think I've seen that one before. It must be a problem with the GitHub Actions cache. The cache key is defined here:
Probably the easiest way to invalidate it is to run |
@JWCook That's sorted it! |
Codecov ReportBase: 98.15% // Head: 98.16% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #76 +/- ##
=======================================
Coverage 98.15% 98.16%
=======================================
Files 7 7
Lines 379 381 +2
Branches 33 33
=======================================
+ Hits 372 374 +2
Misses 4 4
Partials 3 3
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
b69561b
to
e5a4fe0
Compare
6bd9e8b
to
37da4d7
Compare
@JWCook This did pass all the tests... There's definitely something funky with the CI on this project... |
Yeah, the tests all passed at least once, so this should be fine to merge. @vutran1710 It seems like the build is now failing whenever it uses a cached virtualenv, which is something I haven't seen before. Unless you happen to know what's wrong there, it might be best just to disable the cache for now? |
@judahrand you need to bump version in pyproject.toml and resolve the conflicts |
Are you saying you want a minor version bump? It strikes me as super weird that this is decided/managed by the contributors rather than part of the release process or managed automatically with a semver tool (and still determined at release time). |
Yes, it should be automatically using some semver tool (I created an issuse for that), but have yet have time to implement it, thats why manual work is still needed for now. sorry for the inconvenience. |
once the PR has been merged, the release will be done automatically, thats why i need version bump in every pr. |
#79 is at least a temporary fix for the cache issue encountered here.
Meanwhile, another option to consider is releasing only on git tags instead of on every push to |
Honestly, this is way more sensible imo |
Alright, can you rebase onto |
No activity |
You don't want to add that single commit/rebase yourself and merge? Or leave it open and give me the opportunity to get back to it?! Rude. |
This is pretty straightforward and allows sub-second intervals to be specified like any other. Mostly type hinting changes.
Closes: #75