Skip to content

Commit 7ec952b

Browse files
Merge branch 'main' into jvmg-patch-1
2 parents 2981e15 + daad2fa commit 7ec952b

File tree

6 files changed

+12
-19
lines changed

6 files changed

+12
-19
lines changed

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
submodules: true
2828
fetch-depth: 0
29-
- uses: actions/setup-python@v4.2.0
29+
- uses: actions/setup-python@v4.3.0
3030
name: Install Python
3131
with:
3232
python-version: '3.8'

.lgtm.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ ci:
33
autofix_commit_msg: "style: pre-commit fixes"
44
default_stages: [commit, push]
55
default_language_version:
6-
python: python3.9
6+
python: python3
77
repos:
88
- repo: https://github.com/PyCQA/flake8
9-
rev: 3.8.2
9+
rev: 5.0.4
1010
hooks:
1111
- id: flake8
1212
args: [
@@ -15,16 +15,16 @@ repos:
1515
exclude: ^(venv/|docs/)
1616
types: ['python']
1717
- repo: https://github.com/codespell-project/codespell
18-
rev: v2.1.0
18+
rev: v2.2.2
1919
hooks:
2020
- id: codespell
21-
args: ["-L", "ba,ihs,kake,nd,noe,nwo,te"]
21+
args: ["-L", "ba,ihs,kake,nd,noe,nwo,te", "-S", "fixture"]
2222
- repo: https://github.com/pre-commit/pre-commit-hooks
23-
rev: v2.3.0
23+
rev: v4.3.0
2424
hooks:
2525
- id: check-yaml
2626
- repo: https://github.com/pre-commit/mirrors-mypy
27-
rev: v0.981
27+
rev: v0.982
2828
hooks:
2929
- id: mypy
3030
files: zarr

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
dependencies:
55
- wheel
66
- numcodecs >= 0.6.4
7-
- numpy >= 1.7
7+
- numpy >= 1.20
88
- pip
99
- pip:
1010
- asciitree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=40.8.0", "setuptools-scm", "wheel"]
2+
requires = ["setuptools>=64.0.0", "setuptools-scm", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55

@@ -13,7 +13,7 @@ maintainers = [
1313
requires-python = ">=3.8"
1414
dependencies = [
1515
'asciitree',
16-
'numpy>=1.7',
16+
'numpy>=1.20',
1717
'fasteners',
1818
'numcodecs>=0.10.0',
1919
]

requirements_dev_optional.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ ipywidgets==8.0.2
77
# optional library requirements for services
88
# don't let pyup change pinning for azure-storage-blob, need to pin to older
99
# version to get compatibility with azure storage emulator on appveyor (FIXME)
10-
azure-storage-blob==12.14.0 # pyup: ignore
10+
azure-storage-blob==12.14.1 # pyup: ignore
1111
redis==4.3.4
1212
types-redis
1313
types-setuptools
14-
pymongo==4.2.0
14+
pymongo==4.3.2
1515
# optional test requirements
1616
tox==3.26.0
1717
coverage

0 commit comments

Comments
 (0)