-
Notifications
You must be signed in to change notification settings - Fork 10
Updated package name, function name in README.rst cdoe example #15
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
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.
thank you!
@dherrada here's a dupcode CI error |
@romilly can you 'bump' this PR? |
@romilly I think what you've got to do is merge adafruit/master into your fork. I'm not super good at git, but I think you've got to add the adafruit fork as a remote, then fetch adafruit/master, then merge it into romilly/master |
The latest edit uses an “out of date” solution for the “streak problem”. The solution that was chosen to merge was done in this issue: #14. It prevents the buffer from being reallocated. (Strangely the file diff doesn’t show how this differs from the released version. Strange or maybe I’m missing something. ) Can you update your merge to match the released version? |
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.
Looks good to me.
@@ -91,6 +91,7 @@ def _write_pixels(output_file, pixel_source, palette): | |||
color >>= 8 | |||
buffer_index += 1 | |||
else: | |||
result_buffer = bytearray(2048) |
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.
The result_buffer
line at Line 82 could be removed as it is no longer needed.
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.
Thanks for the review @lesamouraipourpre. I removed that unused copy of the variable with latest commit
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.
Looks good to me
tested successfully with:
Adafruit CircuitPython 7.1.0-beta.0 on 2021-11-12; Adafruit PyPortal with samd51j20
Board ID:pyportal
Updating https://github.com/adafruit/Adafruit_CircuitPython_ADT7410 to 1.3.0 from 1.2.7: > Merge pull request adafruit/Adafruit_CircuitPython_ADT7410#17 from jposada202020/adding_critical_temp_features > update rtd py version Updating https://github.com/adafruit/Adafruit_CircuitPython_LTR390 to 1.1.3 from 1.1.2: > Merge pull request adafruit/Adafruit_CircuitPython_LTR390#13 from caternuson/iss11 > update rtd py version Updating https://github.com/adafruit/Adafruit_CircuitPython_BitmapSaver to 1.1.8 from 1.1.7: > Merge pull request adafruit/Adafruit_CircuitPython_BitmapSaver#15 from romilly/master > update rtd py version Updating https://github.com/adafruit/Adafruit_CircuitPython_BLE_Eddystone to 1.0.7 from 1.0.6: > Merge pull request adafruit/Adafruit_CircuitPython_BLE_Eddystone#15 from tekktrik/docfix/add-blinka-req > update rtd py version
The code example in README.rst was only partially updated when the API was changed.