Skip to content

Commit 0799695

Browse files
authored
Merge pull request #132 from autoscrape-labs/refactor/v2
refactor: pydoll v2
2 parents 0e46646 + 757c3a3 commit 0799695

File tree

203 files changed

+28491
-12446
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+28491
-12446
lines changed

.github/workflows/mypy.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: MyPy CI
2+
3+
on:
4+
push:
5+
branches:
6+
- '*' # matches every branch that doesn't contain a '/'
7+
- '*/*' # matches every branch containing a single '/'
8+
- '**' # matches every branch
9+
pull_request:
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
max-parallel: 4
18+
matrix:
19+
python-version: ["3.11"]
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
24+
- name: Set up Python ${{ matrix.python-version }}
25+
uses: actions/setup-python@v2
26+
with:
27+
python-version: ${{ matrix.python-version }}
28+
29+
- name: Install Dependencies
30+
run: |
31+
python -m pip install --upgrade pip
32+
python -m pip install mypy
33+
python -m pip install -e .
34+
python -m mypy --install-types --non-interactive pydoll
35+
36+
- name: mypy
37+
run: python -m mypy .

.github/workflows/ruff-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install ruff
32+
python -m pip install ruff==0.7.1
3333
3434
- name: ruff
3535
run: python -m ruff check .

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.11", "3.12", "3.13"]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Set up Python ${{ matrix.python-version }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ docs/_build/
7272

7373
# PyBuilder
7474
.pybuilder/
75-
target/
75+
7676

7777
# Jupyter Notebook
7878
.ipynb_checkpoints

0 commit comments

Comments
 (0)