-
Notifications
You must be signed in to change notification settings - Fork 30
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
fix on Julia nightly #194
fix on Julia nightly #194
Conversation
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.
LGTM, but @ZacLN should probably take a look at this too.
Hmm, ok, I am now not quite sure how |
Bump. What should be done about the tests here? |
bump, would love to be able to use this on 1.7 |
Yes, in it's current state this isn't intended to fully describe the types. Parameters are dropped except where at the first level of a DataType. For example given I've not had a look at the new approach to Varargs and a different heuristic may well be appropriate. |
I still kept most of the tests, but excluded some in earlier Julia versions. I hope they are not too strict now, but my thought was that they can always be loosened if they become a problem. This also now passes on
Do you mean things like |
Thanks, looks good. Yes exactly that, I'll have a look at the PR (thanks for the ref). |
Good to merge? |
Would also be great to have a tag with the fix. |
Yes, staticlint will need small adjustments. |
@@ -10,7 +10,7 @@ jobs: | |||
runs-on: ${{ matrix.os }} | |||
strategy: | |||
matrix: | |||
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5'] | |||
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', 'nightly'] |
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.
We should generally not edit these files manually, they are managed by package butler and any change we make manually here will be undone by package butler down the road.
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.
Oops, sorry! Didn't realize they were automatically generated.
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.
No harm done, it will just disappear at some point again :)
see JuliaLang/julia#38835 and JuliaLang/julia#38136