Skip to content

Commit

Permalink
[misc] update package dependencies (#965)
Browse files Browse the repository at this point in the history
* update pre-commit versions

* update package with security notice

* reformatting due to pre-commit (ruff) update

* reformatting due to pre-commit (ruff) update

* revert broken black version

* back out bad reformatting
  • Loading branch information
Bruce Martin authored Feb 1, 2024
1 parent 67982f1 commit 6354513
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ MD013:
line_length: 1000

# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
MD024:
allow_different_nesting: true
MD024: false

# MD026/no-trailing-punctuation - Trailing punctuation in heading
MD026:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
args: ["--config", "./tools/pyproject.toml"]

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.1.9
rev: v0.1.15
hooks:
- id: ruff
name: ruff-cellxgene-census
Expand Down Expand Up @@ -88,6 +88,6 @@ repos:
files: ^api/python/notebooks

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.38.0
rev: v0.39.0
hooks:
- id: markdownlint
1 change: 1 addition & 0 deletions api/python/cellxgene_census/tests/test_acceptance.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
See README.md for historical data.
"""

from typing import Any, Dict, Iterator, Optional, Tuple

import pyarrow as pa
Expand Down
1 change: 1 addition & 0 deletions api/python/cellxgene_census/tests/test_lts_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Where there are known and accepted incompatibilities, use `pytest.skip`
to codify them.
"""

from __future__ import annotations

from collections import deque
Expand Down
2 changes: 1 addition & 1 deletion tools/cellxgene_census_builder/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies= [
"fsspec==2023.12.2",
"s3fs==2023.12.2",
"requests==2.31.0",
"aiohttp==3.9.1",
"aiohttp==3.9.3",
"Cython", # required by owlready2
"wheel", # required by owlready2
"owlready2==0.44",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Manage the configuration and dynamic build state for the Census build.
"""

import functools
import io
import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Tools to manage the release.json manifest file.
"""

import json
from typing import Dict, Optional, Union, cast

Expand Down
1 change: 1 addition & 0 deletions tools/census_contrib/src/census_contrib/validate.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Validate an embedding
"""

from __future__ import annotations

import concurrent.futures
Expand Down

0 comments on commit 6354513

Please sign in to comment.