Skip to content
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
14 changes: 7 additions & 7 deletions .github/workflows/python-somacore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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') }}
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions python-spec/src/somacore/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down