mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-22 19:55:48 +00:00
Merge pull request #208 from Riverside-Healthcare/renovate/all-minor-patch
chore(deps) Update all non-major dependencies
This commit is contained in:
commit
05585c62f9
6 changed files with 19 additions and 19 deletions
2
.github/workflows/cancel.yml
vendored
2
.github/workflows/cancel.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Cancel Previous Runs
|
||||
uses: styfle/cancel-workflow-action@0.9.0
|
||||
uses: styfle/cancel-workflow-action@0.9.1
|
||||
with:
|
||||
access_token: ${{ github.token }}
|
||||
workflow_id: test.yml
|
||||
|
|
|
|||
4
.github/workflows/issues.yml
vendored
4
.github/workflows/issues.yml
vendored
|
|
@ -10,13 +10,13 @@ jobs:
|
|||
name: Assign to One Project
|
||||
steps:
|
||||
- name: Assign issues and with `bug` label to bugs project
|
||||
uses: srggrs/assign-one-project-github-action@1.2.1
|
||||
uses: srggrs/assign-one-project-github-action@1.3.1
|
||||
if: contains(github.event.issue.labels.*.name, 'bug')
|
||||
with:
|
||||
project: https://github.com/Riverside-Healthcare/djLint/projects/1
|
||||
column_name: Needs triage
|
||||
- name: Assign issues and with `enhancement` label to enhancement project
|
||||
uses: srggrs/assign-one-project-github-action@1.2.1
|
||||
uses: srggrs/assign-one-project-github-action@1.3.1
|
||||
if: contains(github.event.issue.labels.*.name, 'enhancement')
|
||||
with:
|
||||
project: https://github.com/Riverside-Healthcare/djLint/projects/2
|
||||
|
|
|
|||
2
.github/workflows/python-publish.yml
vendored
2
.github/workflows/python-publish.yml
vendored
|
|
@ -28,6 +28,6 @@ jobs:
|
|||
python -m pip install --upgrade pip
|
||||
pip install poetry
|
||||
- name: Build and publish package
|
||||
uses: JRubics/poetry-publish@v1.8
|
||||
uses: JRubics/poetry-publish@v1.10
|
||||
with:
|
||||
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
|
||||
|
|
|
|||
8
poetry.lock
generated
8
poetry.lock
generated
|
|
@ -252,7 +252,7 @@ python-versions = ">=3.7"
|
|||
|
||||
[[package]]
|
||||
name = "tomlkit"
|
||||
version = "0.9.2"
|
||||
version = "0.10.1"
|
||||
description = "Style preserving TOML library"
|
||||
category = "main"
|
||||
optional = false
|
||||
|
|
@ -308,7 +308,7 @@ test = ["coverage", "pytest", "pytest-cov"]
|
|||
[metadata]
|
||||
lock-version = "1.1"
|
||||
python-versions = "^3.7,<4.0"
|
||||
content-hash = "5882c401d3802c01018bfafaf2a8be1129c29288f51af71ece4388b8bb8a76be"
|
||||
content-hash = "71537dcd92ed560e567b8f4a9e2362d347cc1100d65a3925d1eead25508cd2bf"
|
||||
|
||||
[metadata.files]
|
||||
atomicwrites = [
|
||||
|
|
@ -559,8 +559,8 @@ tomli = [
|
|||
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
|
||||
]
|
||||
tomlkit = [
|
||||
{file = "tomlkit-0.9.2-py3-none-any.whl", hash = "sha256:daf4f9c5f2fbf6b861d6adfc51940b98dee36c13e1d88749a6dc9fb280fff304"},
|
||||
{file = "tomlkit-0.9.2.tar.gz", hash = "sha256:ebd982d61446af95a1e082b103e250cb9e6d152eae2581d4a07d31a70b34ab0f"},
|
||||
{file = "tomlkit-0.10.1-py3-none-any.whl", hash = "sha256:3eba517439dcb2f84cf39f4f85fd2c3398309823a3c75ac3e73003638daf7915"},
|
||||
{file = "tomlkit-0.10.1.tar.gz", hash = "sha256:3c517894eadef53e9072d343d37e4427b8f0b6200a70b7c9a19b2ebd1f53b951"},
|
||||
]
|
||||
tqdm = [
|
||||
{file = "tqdm-4.62.3-py2.py3-none-any.whl", hash = "sha256:8dd278a422499cd6b727e6ae4061c40b48fce8b76d1ccbf5d34fca9b7f925b0c"},
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ PyYAML = "^6.0"
|
|||
colorama = "^0.4.4"
|
||||
regex = "^2022.1.18"
|
||||
tqdm = "^4.62.2"
|
||||
tomlkit = "^0.9.2"
|
||||
tomlkit = "^0.10.0"
|
||||
coverage = { version = "^6.3.1", optional = true }
|
||||
pytest = { version = "^7.0.1", optional = true }
|
||||
pytest-cov = { version = "^3.0.0", optional = true }
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
black==22.1.0; python_full_version >= "3.6.2"
|
||||
click==8.0.3; python_version >= "3.6"
|
||||
black==22.3.0; python_full_version >= "3.6.2"
|
||||
click==8.1.2; python_version >= "3.6"
|
||||
colorama==0.4.4; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
|
||||
importlib-metadata==4.11.0; python_version >= "3.7"
|
||||
importlib-metadata==4.11.3; python_version >= "3.7"
|
||||
isort==5.10.1; python_full_version >= "3.6.1" and python_version < "4.0"
|
||||
mypy-extensions==0.4.3; python_full_version >= "3.6.2"
|
||||
pathspec==0.9.0; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
|
||||
platformdirs==2.5.0; python_version >= "3.7" and python_full_version >= "3.6.2"
|
||||
platformdirs==2.5.1; python_version >= "3.7" and python_full_version >= "3.6.2"
|
||||
pyyaml==6.0; python_version >= "3.6"
|
||||
regex==2022.1.18
|
||||
regex==2022.3.15
|
||||
tomli==2.0.1; python_version >= "3.7" and python_full_version >= "3.6.2"
|
||||
tomlkit==0.9.2; python_version >= "3.6" and python_version < "4.0"
|
||||
tqdm==4.62.3; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
||||
typed-ast==1.4.3; python_version < "3.8" and implementation_name == "cpython" and python_full_version >= "3.6.2"
|
||||
typing-extensions==4.1.0; python_version < "3.8" and python_version >= "3.7" and python_full_version >= "3.6.2"
|
||||
zipp==3.7.0; python_version < "3.8" and python_version >= "3.7"
|
||||
tomlkit==0.10.1; python_version >= "3.6" and python_version < "4.0"
|
||||
tqdm==4.64.0; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
||||
typed-ast==1.5.2; python_version < "3.8" and implementation_name == "cpython" and python_full_version >= "3.6.2"
|
||||
typing-extensions==4.1.1; python_version < "3.8" and python_version >= "3.7" and python_full_version >= "3.6.2"
|
||||
zipp==3.8.0; python_version < "3.8" and python_version >= "3.7"
|
||||
|
|
|
|||
Loading…
Reference in a new issue