Skip to content

Commit 713b839

Browse files
committed
Update yarn file
Signed-off-by: Bernát Gábor <[email protected]>
1 parent 806e2f3 commit 713b839

File tree

10 files changed

+3160
-3226
lines changed

10 files changed

+3160
-3226
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "github-actions"
4-
directory: "/"
3+
- package-ecosystem: 'github-actions'
4+
directory: '/'
55
schedule:
6-
interval: "daily"
6+
interval: 'daily'

.github/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
changelog:
2+
exclude:
3+
authors:
4+
- dependabot
5+
- pre-commit-ci

.github/workflows/check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: check
22
on:
3+
workflow_dispatch:
34
push:
5+
branches: "main"
46
pull_request:
57
schedule:
6-
- cron: '0 8 * * *'
8+
- cron: "0 8 * * *"
79

810
defaults:
911
run:

.github/workflows/jest.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: jest
2-
3-
on: [push, pull_request]
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches: 'main'
6+
pull_request:
7+
schedule:
8+
- cron: '0 8 * * *'
49

510
concurrency:
611
group: jest-${{ github.ref }}
@@ -19,6 +24,6 @@ jobs:
1924
uses: actions/setup-node@v3
2025
with:
2126
node-version: ${{ matrix.node-version }}
22-
- run: yarn set version stable
27+
- run: corepack enable
2328
- run: yarn install
2429
- run: yarn run test

.pre-commit-config.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v4.5.0
44
hooks:
55
- id: check-ast
66
- id: check-builtin-literals
@@ -12,29 +12,29 @@ repos:
1212
- id: end-of-file-fixer
1313
- id: trailing-whitespace
1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v3.10.1
15+
rev: v3.15.0
1616
hooks:
1717
- id: pyupgrade
1818
args: [ "--py37-plus" ]
1919
- repo: https://github.com/PyCQA/isort
20-
rev: 5.12.0
20+
rev: 5.13.0
2121
hooks:
2222
- id: isort
2323
- repo: https://github.com/psf/black
24-
rev: 23.7.0
24+
rev: 23.11.0
2525
hooks:
2626
- id: black
2727
args: [ --safe ]
2828
- repo: https://github.com/asottile/blacken-docs
2929
rev: 1.16.0
3030
hooks:
3131
- id: blacken-docs
32-
additional_dependencies: [ black==23.7 ]
32+
additional_dependencies: [ black==23.11 ]
3333
- repo: https://github.com/tox-dev/pyproject-fmt
34-
rev: "1.1.0"
34+
rev: "1.5.3"
3535
hooks:
3636
- id: pyproject-fmt
37-
additional_dependencies: ["tox>=4.11"]
37+
additional_dependencies: ["tox>=4.11.4"]
3838
- repo: https://github.com/tox-dev/tox-ini-fmt
3939
rev: "1.3.1"
4040
hooks:
@@ -45,19 +45,19 @@ repos:
4545
hooks:
4646
- id: flake8
4747
additional_dependencies:
48-
- flake8-bugbear==23.7.10
48+
- flake8-bugbear==23.12.2
4949
- flake8-comprehensions==3.14
5050
- flake8-pytest-style==1.7.2
5151
- flake8-unused-arguments==0.0.13
5252
- flake8-noqa==1.3.2
5353
- pep8-naming==0.13.3
5454
- repo: https://github.com/pre-commit/mirrors-mypy
55-
rev: v1.5.1
55+
rev: v1.7.1
5656
hooks:
5757
- id: mypy
5858
exclude: ui-tests-ipw[78]\/.*
5959
additional_dependencies:
60-
- "pandas-stubs>=2.0.3.230814"
61-
- "types-Pygments>=2.16"
60+
- "pandas-stubs>=2.1.1.230928"
61+
- "types-Pygments>=2.17"
6262
- "types-colorama>=0.4.15.12"
63-
- "types-setuptools>=68.1.0.1"
63+
- "types-setuptools>=69"

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1+
enableImmutableInstalls: false
12
nodeLinker: node-modules
2-
pnpMode: "loose"

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,6 @@
163163
"singleton": true
164164
}
165165
}
166-
}
166+
},
167+
"packageManager": "[email protected]"
167168
}

setup.py

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

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ commands =
2626
description = format the code base to adhere to our styles, and complain about what we cannot do automatically
2727
skip_install = true
2828
deps =
29-
pre-commit>=3.3.3
29+
pre-commit>=3.5
3030
pass_env =
3131
PROGRAMDATA
3232
commands =
@@ -36,7 +36,7 @@ commands =
3636
description = check that the long description is valid
3737
skip_install = true
3838
deps =
39-
build[virtualenv]>=1
39+
build[virtualenv]>=1.0.3
4040
twine>=4.0.2
4141
commands =
4242
python -m build --sdist --wheel . -o {envtmpdir}

0 commit comments

Comments
 (0)