diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e95360..130c087 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,22 +9,8 @@ on: jobs: - pre-commit: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Set up Python 3.10 - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - uses: pre-commit/action@v3.0.0 - test-package: - needs: [pre-commit] - runs-on: ubuntu-latest timeout-minutes: 15 @@ -65,8 +51,6 @@ jobs: test-installation-with-pipx: - needs: [pre-commit] - runs-on: ubuntu-latest timeout-minutes: 10 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a1ab8b..8e25468 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: --outdir dist/ - name: Upload distribution artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: release path: dist/ @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 name: Download distribution artifact with: name: release diff --git a/aiidalab_launch/profile.py b/aiidalab_launch/profile.py index de9d34f..df41cbd 100644 --- a/aiidalab_launch/profile.py +++ b/aiidalab_launch/profile.py @@ -89,7 +89,7 @@ def __post_init__(self): # Normalize extra mount mode to be "rw" by default # so that we match Docker default but are explicit. for extra_mount in self.extra_mounts.copy(): - _, _, _ = self.parse_extra_mount(extra_mount) + self.parse_extra_mount(extra_mount) if len(extra_mount.split(":")) == 2: self.extra_mounts.remove(extra_mount) self.extra_mounts.add(f"{extra_mount}:rw") diff --git a/setup.cfg b/setup.cfg index eee41e1..46693a6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,12 +22,11 @@ packages = find: install_requires = click==8.1 click-spinner==0.1.10 - docker==6.1.2 + docker==7.0.0 packaging==21.3 - python-dotenv==0.19.1 requests==2.26.0 requests-cache==0.9.1 - tabulate==0.8.9 + tabulate==0.9.0 toml==0.10.2 python_requires = >=3.8