diff --git a/.github/workflows/python-somacore.yaml b/.github/workflows/python-somacore.yaml index 67a6eb6..e5105b8 100644 --- a/.github/workflows/python-somacore.yaml +++ b/.github/workflows/python-somacore.yaml @@ -14,9 +14,9 @@ jobs: env: PYTHON_VERSION: "3.12" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v6 with: python-version: ${{ env.PYTHON_VERSION }} cache: pip @@ -27,7 +27,7 @@ jobs: run: pip install -r requirements-py${PYTHON_VERSION}.txt -r requirements-py${PYTHON_VERSION}-lint.txt - name: Restore pre-commit cache - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.cache/pre-commit key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} @@ -47,12 +47,12 @@ jobs: matrix: python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # setuptools-scm needs a deep clone so it can look through history # to find a relevant tag. fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} cache: pip @@ -83,8 +83,8 @@ jobs: permissions: id-token: write steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v6 + - uses: actions/setup-python@v6 with: cache: pip cache-dependency-path: python-spec/requirements-py3.10.txt diff --git a/python-spec/src/somacore/data.py b/python-spec/src/somacore/data.py index 4718dc9..5a3cd0c 100644 --- a/python-spec/src/somacore/data.py +++ b/python-spec/src/somacore/data.py @@ -68,8 +68,8 @@ def create( A sequence of tuples specifying the domain of each index column. Each tuple must be a pair consisting of the minimum and maximum values storable in the index column. This sequence - must have the same length as ``index_column_names``. Use ``None`` for string - index columns when the implementation does not support string domains. + must have the same length as ``index_column_names``. Use ``None`` for string + index columns when the implementation does not support string domains. platform_config: platform-specific configuration; keys are SOMA implementation names.