Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5183080
Update AGENTS.md
AndreiDrang Feb 16, 2026
3a1510e
Update AGENTS.md
AndreiDrang Feb 16, 2026
d3d0051
Update pallets_sphinx_themes from 2.3.0 to 2.5.0
pyup-bot Feb 28, 2026
3bcb51f
Update myst-parser from 5.0.0 to 5.1.0
pyup-bot May 13, 2026
d897ee4
Merge pull request #239 from AndreiDrang/pyup-update-myst-parser-5.0.…
AndreiDrang May 22, 2026
0247baa
Merge branch 'main' into pyup-update-pallets_sphinx_themes-2.3.0-to-2…
AndreiDrang May 22, 2026
1359f71
Merge pull request #238 from AndreiDrang/pyup-update-pallets_sphinx_t…
AndreiDrang May 22, 2026
6983fd6
Update pytest requirement from ==8.* to ==9.*
dependabot[bot] Jun 29, 2026
41b6cf4
Update isort requirement from ==6.* to ==8.*
dependabot[bot] Jun 29, 2026
b01236b
Update msgspec requirement from <0.21,>=0.18 to >=0.18,<0.22
dependabot[bot] Jun 29, 2026
3973d33
Merge pull request #242 from AndreiDrang/dependabot/pip/msgspec-gte-0…
AndreiDrang Jul 11, 2026
8d36a81
Merge pull request #241 from AndreiDrang/dependabot/pip/isort-eq-8.star
AndreiDrang Jul 11, 2026
ff0b81d
Merge pull request #240 from AndreiDrang/dependabot/pip/pytest-eq-9.star
AndreiDrang Jul 11, 2026
d0e39c0
Update black requirement from ==25.* to ==26.*
dependabot[bot] Jul 11, 2026
bd5f693
Merge pull request #243 from AndreiDrang/dependabot/pip/black-eq-26.star
AndreiDrang Aug 3, 2026
7ca4455
build(uv): migrate project tooling to uv
AndreiDrang Aug 3, 2026
5f0748c
ci(uv): run workflows through uv
AndreiDrang Aug 3, 2026
2eafc0c
style(ruff): format source modules
AndreiDrang Aug 3, 2026
49b30b8
style(ruff): format test modules
AndreiDrang Aug 3, 2026
df97aa1
fix(recaptcha): keep invalid-type errors Python 3.9 compatible
AndreiDrang Aug 3, 2026
97b21a5
docs(architecture): document repository contracts
AndreiDrang Aug 3, 2026
f7312f7
chore(release): bump package version to 2.3.0
AndreiDrang Aug 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 23 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@ name: Test Build

on:
push:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/build.yml'
- 'src/**'
- 'Makefile'
- ".github/workflows/build.yml"
- "src/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"
pull_request:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/build.yml'
- 'src/**'
- 'Makefile'
- ".github/workflows/build.yml"
- "src/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"

jobs:
test_build:
Expand All @@ -23,11 +27,14 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Local build checking
run: make build
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Build package
run: make build
44 changes: 25 additions & 19 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@ name: Installation

on:
push:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/install.yml'
- 'src/**'
- 'Makefile'
- ".github/workflows/install.yml"
- "src/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"
pull_request:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/install.yml'
- 'src/**'
- 'Makefile'
- ".github/workflows/install.yml"
- "src/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"

jobs:
install:
Expand All @@ -23,14 +27,16 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Local install checking
run: make install

- name: PYPI install checking
run: pip install python3-anticaptcha
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Local install checking
run: make install
- name: PyPI install checking
run: uv run --no-project --with python3-anticaptcha python -c "import python3_anticaptcha"
50 changes: 27 additions & 23 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,23 @@ name: Lint

on:
push:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/lint.yml'
- 'src/**'
- 'Makefile'
- 'requirements.style.txt'
- ".github/workflows/lint.yml"
- "src/**"
- "tests/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"
pull_request:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/lint.yml'
- 'src/**'
- 'Makefile'
- 'requirements.style.txt'
- ".github/workflows/lint.yml"
- "src/**"
- "tests/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"

jobs:
lint:
Expand All @@ -27,16 +31,16 @@ jobs:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.style.txt

- name: Lint
run: make lint
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install dependencies
run: uv sync --extra style
- name: Lint
run: make lint
36 changes: 23 additions & 13 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,23 @@ name: Sphinx docs

on:
push:
branches: [ "release" ]
branches: ["release"]
paths:
- '.github/workflows/sphinx.yml'
- 'src/**'
- 'docs/**'
- 'files/**'
- ".github/workflows/sphinx.yml"
- "src/**"
- "docs/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"
pull_request:
branches: ["release"]
paths:
- ".github/workflows/sphinx.yml"
- "src/**"
- "docs/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"

jobs:
docs:
Expand All @@ -16,16 +27,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.12.3

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

- name: Build docs
python-version: "3.12"
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Build documentation
run: make doc

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down
40 changes: 21 additions & 19 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@ name: Tests

on:
push:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/test.yml'
- 'src/**'
- 'tests/**'
- 'Makefile'
- 'requirements.test.txt'
- ".github/workflows/test.yml"
- "src/**"
- "tests/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"
pull_request:
branches: [ "main", "release"]
branches: ["main", "release"]
paths:
- '.github/workflows/test.yml'
- 'src/**'
- 'Makefile'
- 'requirements.test.txt'
- ".github/workflows/test.yml"
- "src/**"
- "tests/**"
- "pyproject.toml"
- "uv.lock"
- "Makefile"
schedule:
- cron: "5 0 * * 1"

Expand All @@ -30,20 +33,19 @@ jobs:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -U -r requirements.test.txt

run: uv sync --extra test
- name: Test
run: make tests

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dist/

venv/
env/
.venv/
/.coverage
/docs/_build/
/src/python3_anticaptcha.egg-info/
Expand Down
Loading
Loading