-
Notifications
You must be signed in to change notification settings - Fork 949
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
Feature/release 6 0 0 #1382
Merged
Merged
Feature/release 6 0 0 #1382
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Minimum verison: 3.7 (currently oldest version) build verison: 3.8 test versions: from 3.7 to 3.11, 3.12 dev version closes #1152
Add first typped file: `url.py`.
We must force cast JSON returned dict to a dict for mypy to see it
Remove deprecated method delete_row
Initial typing in client.py
Bumps [isort](https://github.com/pycqa/isort) from 5.11.4 to 5.12.0. - [Release notes](https://github.com/pycqa/isort/releases) - [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md) - [Commits](PyCQA/isort@5.11.4...5.12.0) --- updated-dependencies: - dependency-name: isort dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Remove/get records use index
increase warning stacklevel from 1 to 2
Skip CVE directly related to wrong pip version, we only use it a tool for the CI to run the package we don't actually use it in production, we don't handle nor manage pip versions
Feature/merge master
feature/merge master
Simplify get records
Add a new util function that helps building record values. Records are list of dictionaries, each dictionary has the same set of keys, they are set from the given list of headers. Each key is associated to a value from the given matrix of values. They are as many dictionaries as they are lines in the matrix. Each line in the matrix will be associated to a dictionary, each key is associated to a value from that line in the given order. Example: Headers: A B C Values: 1 2 3 7 8 9 Result: [ { A: 1, B: 2, C: 3}, {A: 7, B: 8, C: 9}] closes #1367 Signed-off-by: Alexandre Lavigne <[email protected]>
Add util function `to_records` to build records
Add the new section in the v6 migration guide about the method `Worksheet.get_all_records` to allow users to migrate from previous method signature to the new one. closes #1376 Signed-off-by: Alexandre Lavigne <[email protected]>
Add a new util function that helps building record values. Records are list of dictionaries, each dictionary has the same set of keys, they are set from the given list of headers. Each key is associated to a value from the given matrix of values. They are as many dictionaries as they are lines in the matrix. Each line in the matrix will be associated to a dictionary, each key is associated to a value from that line in the given order. Example: Headers: A B C Values: 1 2 3 7 8 9 Result: [ { A: 1, B: 2, C: 3}, {A: 7, B: 8, C: 9}] closes #1367 Signed-off-by: Alexandre Lavigne <[email protected]>
feature/add utils get records
Signed-off-by: Alexandre Lavigne <[email protected]>
…se_6_0_0 feature/merge master into release 6 0 0
20,000 lines is a few too many for me to look at each... but I had a skim, and the tests work. let's merge :) |
alifeee
approved these changes
Jan 27, 2024
😆 Of course. Now we just hope it works as planned 😬 |
It's done! I thought that day would never come 🤩 I hope everyone will like it 🙄 |
wow! I will release as I said tomorrow (Sunday) at 12:00 UTC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Merge all changes related to v6.0.0 !
closes #1380