Skip to content

Commit 9bc09db

Browse files
committed
chore: bump versions and rerun precommit
1 parent 3af719f commit 9bc09db

File tree

4 files changed

+11
-16
lines changed

4 files changed

+11
-16
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
submodules: true
1919
- uses: actions/setup-python@v2
20-
- uses: pre-commit/[email protected].0
20+
- uses: pre-commit/[email protected].3
2121
with:
2222
extra_args: --hook-stage manual
2323

@@ -90,7 +90,7 @@ jobs:
9090
with:
9191
submodules: true
9292

93-
- uses: joerick/cibuildwheel@v1.9.0
93+
- uses: joerick/cibuildwheel@v1.10.0
9494
env:
9595
CIBW_BUILD: cp38-win_amd64 cp27-manylinux_i686 cp37-macosx_x86_64
9696
CIBW_TEST_EXTRAS: test

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
platforms: all
6363

64-
- uses: joerick/cibuildwheel@v1.9.0
64+
- uses: joerick/cibuildwheel@v1.10.0
6565
env:
6666
CIBW_BUILD: cp${{ matrix.python }}-*
6767
CIBW_ARCHS: ${{ matrix.arch }}
@@ -113,7 +113,7 @@ jobs:
113113
with:
114114
submodules: true
115115

116-
- uses: joerick/cibuildwheel@v1.9.0
116+
- uses: joerick/cibuildwheel@v1.10.0
117117
env:
118118
CIBW_BUILD: ${{ matrix.build }}
119119
CIBW_SKIP: cp27-win* pp27-win*
@@ -144,7 +144,7 @@ jobs:
144144
- uses: ilammy/msvc-dev-cmd@v1
145145

146146
- name: Build 64-bit wheel
147-
uses: joerick/cibuildwheel@v1.9.0
147+
uses: joerick/cibuildwheel@v1.10.0
148148
env:
149149
CIBW_BUILD: cp27-win_amd64
150150
DISTUTILS_USE_SDK: 1
@@ -155,7 +155,7 @@ jobs:
155155
arch: x86
156156

157157
- name: Build 32-bit wheel
158-
uses: joerick/cibuildwheel@v1.9.0
158+
uses: joerick/cibuildwheel@v1.10.0
159159
env:
160160
CIBW_BUILD: cp27-win32
161161
DISTUTILS_USE_SDK: 1

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ ci:
44

55
repos:
66
- repo: https://github.com/psf/black
7-
rev: 20.8b1
7+
rev: 21.4b1
88
hooks:
99
- id: black
1010

1111
- repo: https://github.com/nbQA-dev/nbQA
12-
rev: 0.5.9
12+
rev: 0.7.0
1313
hooks:
1414
- id: nbqa-black
1515
additional_dependencies: [black==20.8b1]
@@ -38,12 +38,12 @@ repos:
3838
additional_dependencies: [pyyaml]
3939

4040
- repo: https://github.com/asottile/pyupgrade
41-
rev: v2.10.1
41+
rev: v2.13.0
4242
hooks:
4343
- id: pyupgrade
4444

4545
- repo: https://github.com/PyCQA/isort
46-
rev: 5.7.0
46+
rev: 5.8.0
4747
hooks:
4848
- id: isort
4949

@@ -54,7 +54,7 @@ repos:
5454
args: [--min-py3-version, "3.5"]
5555

5656
- repo: https://github.com/pycqa/flake8
57-
rev: 3.9.0
57+
rev: 3.9.1
5858
hooks:
5959
- id: flake8
6060
exclude: docs/conf.py

src/boost_histogram/_internal/traits.pyi

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class Traits:
77
growth: bool
88
continuous: bool
99
ordered: bool
10-
1110
def __init__(
1211
self,
1312
underflow: bool = False,
@@ -17,12 +16,8 @@ class Traits:
1716
continuous: bool = False,
1817
ordered: bool = False,
1918
): ...
20-
2119
@property
2220
def discrete(self) -> bool: ...
23-
2421
def __eq__(self, other: Any) -> bool: ...
25-
2622
def __ne__(self, other: Any) -> bool: ...
27-
2823
def __repr__(self) -> str: ...

0 commit comments

Comments
 (0)