Skip to content

Commit

Permalink
Merge branch 'main' into style/format-ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau authored Oct 23, 2023
2 parents e1b8c74 + 1bbc367 commit 19f7b39
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
platform: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python versions on ${{ matrix.platform }}
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ requires-python = ">=3.8"

[project.optional-dependencies]
dev = [
"coverage[toml]==7.3.1",
"coverage[toml]==7.3.2",
"hypothesis>=6.0",
"pytest==7.4.2",
"pytest-check==2.2.1",
"pytest-check==2.2.2",
"pytest-cov==4.1.0",
"pytest-mock==3.11.1",
"pytest-mock==3.12.0",
"pytest-rerunfailures==12.0",
]
lint = [
"black==23.9.1",
"codespell[toml]==2.2.5",
"black==23.10.0",
"codespell[toml]==2.2.6",
"ruff==0.1.1",
"yamllint==1.32.0"
]
types = [
"mypy[reports]==1.5.1",
"pyright==1.1.327",
"mypy[reports]==1.6.1",
"pyright==1.1.332",
"types-requests",
"types-urllib3",
]
Expand Down

0 comments on commit 19f7b39

Please sign in to comment.