-
Notifications
You must be signed in to change notification settings - Fork 1
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
Python 3.11 upgrade #279
Python 3.11 upgrade #279
Changes from 7 commits
7e142b1
ece924a
4a8f051
2e99cf7
2f49bcb
829e5b0
53c8e6d
69093fa
6cc26bc
abe2140
a7fa068
669e51f
4b70bd2
927862e
702aedb
5b4c84b
4120faa
a25959b
07bbdd0
ba13cbf
7ed1511
88f3b89
3e5cf5f
e24b3e0
c760707
7b3daaf
099a32e
25a4b58
96cc528
97f1173
b226d61
45064b2
bd6a797
96a10cb
af72ea9
f7c05b5
27e11b6
2699a4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,14 @@ dcicutils | |
Change Log | ||
---------- | ||
|
||
7.10.0 | ||
====== | ||
|
||
* Changed PyYAML version to ^6.0.1; Mac M1 has issues building 5.4.1 (though 5.3.1 works). | ||
See PyYAML 6.0 change log here: https://github.com/yaml/pyyaml/blob/master/CHANGES | ||
The only incompatible change seems to be that yaml.load now requires a Loader argument; | ||
and searching our repos (4dn-dcic, dbmi-bgm, smaht-dac) the only ones which might be affected | ||
are cwltools and parliament2, neither of which are dependent on dcicutils in any way. | ||
|
||
7.9.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think a major version 8.0.0 would be wise, so that if there's an issue, it's easy for someone to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @willronchetti do you have an opinion on this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a little worried about that required arg. I note that if you search for calls to yaml.load in 4dn-dcic (which is only one of our 3 orgs), you'll see several calls that don't pass an explicit Loader argument. Will that work or are you forcing code updates? Maybe those updates are fine. If there is an obvious loader, maybe we should have something that someone can call instead. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, looking at those results as well as for dbmi-bgm and smaht-dac, I don't see any uses within a repo where dcicutils is used (where the version of pyyaml it uses will increments due to this dcicutils change). The only affected repos are cwltools and parliament2 - neither of which has any reference to dcicutils anywhere. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I built a cgap-portal(branch: dcicutils-with-pyyaml-6-and-sheet-utils | version: 14.2.0.1b1) with this dcicutils/pyyaml update and deployed to cgap-supertest and it seems fine (login/logout, create access-key, and ran submit-metadata-bundle). |
||
===== | ||
|
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.
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.
Done