Skip to content

Commit bc2a5dc

Browse files
author
Andrei
authored
Merge pull request #49 from AndreiDrang/main
Upd libs and versions
2 parents 8bfe1ac + 08a0bc1 commit bc2a5dc

12 files changed

Lines changed: 25 additions & 15 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@ updates:
44
directory: "/" # Location of package manifests
55
schedule:
66
interval: "weekly"
7+
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"
12+
commit-message:
13+
prefix: "[github-actions] "

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
python-version: ["3.8", "3.9", "3.10", "3.11"]
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v3
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

.github/workflows/install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
python-version: ["3.8", "3.9", "3.10", "3.11"]
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v3
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
python-version: ["3.8", "3.9", "3.10", "3.11"]
2828

2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- name: Set up Python ${{ matrix.python-version }}
32-
uses: actions/setup-python@v3
32+
uses: actions/setup-python@v4
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535

.github/workflows/sphinx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-python@v3
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v4
1919

2020
- name: Build docs requirements
2121
run: pip install -r docs/requirements.txt

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
python-version: ["3.11", ]
3131

3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v3
35+
uses: actions/setup-python@v4
3636
with:
3737
python-version: ${{ matrix.python-version }}
3838

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
"Capsolver",
5555
"https://dashboard.capsolver.com/passport/register?inviteCode=kQTn-tG07Jb1",
5656
),
57-
]
57+
ProjectLink("RedPandaDev", "https://red-panda-dev.xyz/"),
58+
],
5859
}
5960
html_sidebars = {
6061
"index": ["project.html", "localtoc.html", "searchbox.html", "ethicalads.html"],

docs/modules/other-libs/info.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
1. [RuCaptcha / 2Captcha](https://github.com/AndreiDrang/python-rucaptcha)
55
2. [AntiCaptcha](https://github.com/AndreiDrang/python3-anticaptcha)
66
3. [Capsolver](https://github.com/AndreiDrang/python3-capsolver)
7+
4. [RedPandaDev group](https://red-panda-dev.xyz/)

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pallets_sphinx_themes==2.*
22
myst-parser==2.0.*
33
autodoc_pydantic==1.9.0
4+
pydantic>=2.4.0 # not directly required, pinned by Snyk to avoid a vulnerability

requirements.style.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# codestyle
22
isort==5.*
3-
black==23.9.1
3+
black==23.10.1
44
autoflake==2.*

0 commit comments

Comments
 (0)