Skip to content
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

DuckDB Examples Jupyter Notebook #378

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cc3144a
release: v1.0.0a2
machow Dec 18, 2021
44b291c
Merge pull request #358 from machow/feat-a2
machow Dec 18, 2021
6d2629b
fix(ci): multiple bigquery can test at the same time
machow Dec 24, 2021
4c4fbc4
Merge pull request #360 from machow/feat-bigquery-tests
machow Dec 30, 2021
c0b524d
fix(pandas): fast methods support DataFrame aggs like n()
machow Jan 5, 2022
6bb551a
Merge pull request #363 from machow/fix-fast-vector-n
machow Jan 6, 2022
1341222
fix(forcats): fct_reorder handles nulls and pandas 1.3
machow Jan 6, 2022
404253d
fix(ops): remove __div__ method, use __truediv__
machow Jan 6, 2022
b4c3298
fix(tests): coalesce function pandas 1.3 test compatibility
machow Jan 7, 2022
a7b3526
fix(tests): datetime module pandas 1.3 test compatibility
machow Jan 7, 2022
242d430
fix(tests): pandas 1.3 median function now consistent, so tweak test
machow Jan 7, 2022
cbd427f
fix(pandas): nest now works with pandas 1.3 splitter
machow Jan 7, 2022
17685c1
chore(ci): add latest dependencies to test matrix
machow Jan 7, 2022
380eba0
fix(metahook): do not modify dict while looping over it
machow Jan 11, 2022
17ea905
Merge pull request #366 from machow/support-pandas-1.3
machow Jan 11, 2022
f3ad537
fix(install): correclty read utf-8 in readme on windows
machow Jan 12, 2022
afcdc7e
Merge pull request #370 from machow/fix-install-encoding
machow Jan 12, 2022
f335156
release: bump alpha version
machow Jan 12, 2022
7fab893
feat(pandas): attach grouped repr method for console
machow Jan 12, 2022
fa546ed
Merge pull request #371 from machow/fix-consle-repr
machow Jan 12, 2022
7b4fd6b
tests(pandas) generic fast_mutate test
machow Jan 12, 2022
b76ba35
Merge pull request #372 from machow/test-fast-groups
machow Jan 13, 2022
1caaa33
fix(pandas): support inferring on columns in semi_join
machow Jan 13, 2022
4c046af
feat(sql): support inferring on columns in semi_join
machow Jan 13, 2022
f03a8f4
tests: check semi_join raises when can't infer on arg
machow Jan 13, 2022
f5b36f8
Merge pull request #374 from machow/fix-join-on-arg
machow Jan 13, 2022
a622ee7
DuckDB Examples Jupyter Notebook
Alex-Monahan Jan 19, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,6 @@ jobs:
requirements: ['-r requirements.txt']
include:
# historical requirements
- name: "Minimum install_requires versions"
requirements: numpy~=1.12.0 pandas~=0.24.0 SQLAlchemy~=1.2.19 psycopg2~=2.7.0 PyMySQL==1.0.2
pytest_flags: --ignore=siuba/dply/forcats.py siuba
python-version: 3.6
- name: "2019-late dependencies"
requirements: numpy==1.17.4 pandas==0.24.2 SQLAlchemy==1.2.19 psycopg2==2.8.4 PyMySQL==1.0.2
pytest_flags: --ignore=siuba/dply/forcats.py siuba
python-version: 3.6
- name: "2020-early dependencies"
requirements: numpy==1.17.4 pandas~=0.25.3 SQLAlchemy~=1.3.11 psycopg2~=2.8.4 PyMySQL==1.0.2
pytest_flags: --ignore=siuba/dply/forcats.py siuba
Expand All @@ -37,6 +29,14 @@ jobs:
python-version: 3.8
requirements: numpy~=1.19.1 pandas~=1.1.0 SQLAlchemy~=1.4.13 psycopg2~=2.8.5 PyMySQL==1.0.2
latest: true
- name: "2022-early dependencies"
python-version: 3.8
requirements: numpy~=1.22.0 pandas~=1.3.5 SQLAlchemy~=1.4.29 psycopg2-binary~=2.9.3 PyMySQL==1.0.2
latest: true
- name: "2022-early dependencies"
python-version: 3.10.1
requirements: numpy~=1.22.0 pandas~=1.3.5 SQLAlchemy~=1.4.29 psycopg2-binary~=2.9.3 PyMySQL==1.0.2
latest: true

steps:
- uses: actions/checkout@v2
Expand Down