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

Pandas update 1.5 #463

Merged
merged 6 commits into from
Feb 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.8", "3.9", "3.10", "3.11"]

name: Python ${{ matrix.python }}

Expand All @@ -29,7 +29,7 @@ jobs:
- name: Setup poetry
uses: abatilo/actions-poetry@v2.2.0
with:
poetry-version: 1.3.1
poetry-version: 1.3.2

- name: Configure poetry
run: poetry config virtualenvs.in-project true
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.8", "3.9", "3.10", "3.11"]

name: Python ${{ matrix.python }}

Expand All @@ -32,16 +32,16 @@ jobs:
- name: Setup poetry
uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: 1.3.1
poetry-version: 1.3.2

- name: Configure poetry
run: poetry config virtualenvs.create false

- name: Install Python dependencies
run: |
poetry install
python -m pip install jupyterlab-widgets==1.0.2
python -m pip install jupyterlab==3.0.11
python -m pip install jupyterlab-widgets==1.1.2
python -m pip install jupyterlab==3.6.1

- name: Setup Node
uses: actions/setup-node@v3
Expand All @@ -55,11 +55,12 @@ jobs:
- name: Run tests
run: |
jupyter labextension install .
jupyter labextension disable "@jupyterlab/apputils-extension:announcements"
cd ui-tests/
yarn
yarn run start-jlab:detached
yarn start-jlab:detached
sleep 10
yarn run test
yarn test
- name: Upload output file
if: failure()
uses: actions/upload-artifact@v2
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,7 @@ node_modules/

# Virtual env
.venv/*

ui-tests/test-output
ui-tests/yarn.lock
ui-tests/uploaded
Loading