Skip to content

0.6.0 release #80

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

Merged
merged 87 commits into from
Oct 7, 2020
Merged

0.6.0 release #80

merged 87 commits into from
Oct 7, 2020

Conversation

chfw
Copy link
Member

@chfw chfw commented Sep 27, 2020

With your PR, here is a check list:

  • Has Test cases written
  • Has all code lines tested
  • Has make format been run?
  • Please update CHANGELOG.yml(not CHANGELOG.rst)
  • Passes all Travis CI builds
  • Has fair amount of documentation if your change is complex
  • run 'make format' so as to confirm the pyexcel organisation's coding style
  • Please add yourself to 'contributors' section of pyexcel-io.yml (if not found, please use CONTRIBUTORS.rst)
  • Agree on NEW BSD License for your contribution

@codecov-commenter
Copy link

codecov-commenter commented Sep 27, 2020

Codecov Report

Merging #80 into master will increase coverage by 0.05%.
The diff coverage is 98.81%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #80      +/-   ##
==========================================
+ Coverage   97.14%   97.20%   +0.05%     
==========================================
  Files          42       52      +10     
  Lines        3157     3292     +135     
==========================================
+ Hits         3067     3200     +133     
- Misses         90       92       +2     
Impacted Files Coverage Δ
pyexcel_io/database/common.py 100.00% <ø> (+1.04%) ⬆️
pyexcel_io/exceptions.py 100.00% <ø> (ø)
pyexcel_io/book.py 73.33% <84.61%> (-22.13%) ⬇️
pyexcel_io/database/importers/sqlalchemy.py 96.29% <89.47%> (+1.65%) ⬆️
pyexcel_io/plugins.py 96.39% <96.42%> (+1.23%) ⬆️
pyexcel_io/reader.py 97.18% <97.18%> (ø)
pyexcel_io/io.py 98.23% <97.67%> (-0.83%) ⬇️
pyexcel_io/readers/csv_sheet.py 98.14% <98.14%> (ø)
pyexcel_io/__init__.py 100.00% <100.00%> (ø)
pyexcel_io/_compact.py 70.83% <100.00%> (-12.89%) ⬇️
... and 65 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 01ba94c...9517e0b. Read the comment docs.

chfw and others added 8 commits September 27, 2020 23:30
… tsv (#81)

* 🐛 pyexcel-io used to allow one reader/writer handles more than one file type

* 📚 update pyinstaller instructions

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

* 💄 update coding style

Co-authored-by: chfw <chfw@users.noreply.github.com>
* 🎉 abstract reader and writer

* 🔨 update sheet interface

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

Co-authored-by: chfw <chfw@users.noreply.github.com>
* ✨ new query reader

* 💚 add close implementation

* 💄 update coding style

* 🐛 update close as class method

* 💄 use default sheet name

* 🔬 test query reader

* 💄 update coding style

* 💚 test close method

* 📚 update change log

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

Co-authored-by: chfw <chfw@users.noreply.github.com>
* 🚜 code refactoring

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

* 🚜 update code readability

* 💄 fix a bug

* 💄 minor update

Co-authored-by: chfw <chfw@users.noreply.github.com>
* 🔥 code reuse

* 🎉 update available plugins

* 🐛 update missing file

* 💚 update test cases
* 🔥 code reuse

* 🎉 update available plugins

* 🐛 update missing file

* 💚 update test cases

* ✨ outline the plugin sheet writer interface. well, break the old interface

* 🚜 break the old interface

* 🔥 remove useless metaphor
* 🎉 allow trailing options, get_data(...keep_trailing_empty_cells=True). fix #86

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

* 💄 update coding style

Co-authored-by: chfw <chfw@users.noreply.github.com>
* 💄 minor tweak in code

* 💚 use value error
chfw and others added 3 commits October 4, 2020 22:15
* 🔨 improve reader interface

* 🔨 shrink reader code

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

* 🔥 remove redundant functionalitoes, never will use. what's the point

* 📚 updated doc string and the tutorial

* 🔨 update import statements

* 🔬 more test coverage

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

* 💚 fix unit test failure

* 📚 update reader plugin example

* 💄 update coding style

* 📚 fix index rst file

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

Co-authored-by: chfw <chfw@users.noreply.github.com>
* 📚 add custom plugin writer

* This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst

* 📚 update writer plugin

* 📚 update plugin writer and reader documentation

* 📚 telling the location of the example codes

Co-authored-by: chfw <chfw@users.noreply.github.com>
* 📚 update doc strings and plugin compactibility list

* 🔥 remove PY2 related code and update docs

* 🔬 more test coverage
@codecov-io
Copy link

codecov-io commented Oct 6, 2020

Codecov Report

Merging #80 into master will increase coverage by 0.68%.
The diff coverage is 98.58%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #80      +/-   ##
==========================================
+ Coverage   97.14%   97.83%   +0.68%     
==========================================
  Files          42       52      +10     
  Lines        3157     3326     +169     
==========================================
+ Hits         3067     3254     +187     
+ Misses         90       72      -18     
Impacted Files Coverage Δ
pyexcel_io/database/common.py 100.00% <ø> (+1.04%) ⬆️
pyexcel_io/exceptions.py 100.00% <ø> (ø)
pyexcel_io/book.py 69.44% <68.75%> (-26.02%) ⬇️
pyexcel_io/database/importers/sqlalchemy.py 96.29% <89.47%> (+1.65%) ⬆️
pyexcel_io/plugins.py 96.39% <96.42%> (+1.23%) ⬆️
pyexcel_io/reader.py 97.33% <97.33%> (ø)
pyexcel_io/io.py 98.23% <97.67%> (-0.83%) ⬇️
pyexcel_io/readers/csv_sheet.py 98.14% <98.14%> (ø)
pyexcel_io/__init__.py 100.00% <100.00%> (ø)
pyexcel_io/_compact.py 70.00% <100.00%> (-13.73%) ⬇️
... and 65 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 01ba94c...bc4d2b3. Read the comment docs.

@chfw chfw changed the title WIP - 0.6.0 release 0.6.0 release Oct 7, 2020
@chfw chfw merged commit 3a57cc0 into master Oct 7, 2020
@chfw chfw mentioned this pull request Oct 7, 2020
9 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants