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

Test with aiida 2.6.2 #616

Merged
merged 1 commit into from
Sep 18, 2024
Merged
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
18 changes: 11 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
FORCE_COLOR: "1"
UV_VERSION: "0.2.17"
UV_VERSION: "0.4.6"

# https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
Expand All @@ -27,7 +27,7 @@ jobs:
matrix:
browser: [Chrome, Firefox]
# test on the latest and the oldest supported version
aiida-core-version: [2.1.2, 2.5.1]
aiida-core-version: [2.1.2, 2.6.2]
fail-fast: false

runs-on: ubuntu-latest
Expand All @@ -43,8 +43,10 @@ jobs:
with:
python-version: '3.10'

- name: Install uv
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-installer.sh | sh
- name: Setup uv
uses: astral-sh/setup-uv@v1
with:
version: ${{ env.UV_VERSION }}

- name: Install package test dependencies
# Notebook tests happen in the container, here we only need to install
Expand Down Expand Up @@ -88,7 +90,7 @@ jobs:
matrix:
python-version: ['3.9', '3.11']
# Test on the latest and oldest supported version
aiida-core-version: [2.2.2, 2.5.1]
aiida-core-version: [2.2.2, 2.6.2]
fail-fast: false

runs-on: ubuntu-latest
Expand All @@ -111,8 +113,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install uv
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-installer.sh | sh
- name: Setup uv
uses: astral-sh/setup-uv@v1
with:
version: ${{ env.UV_VERSION }}

- name: Install package
# NOTE: uv (unlike pip) does not compile python to bytecode after install.
Expand Down