Skip to content

Commit

Permalink
Merge pull request #280 from jorenham/feature/basedpyright
Browse files Browse the repository at this point in the history
bump ruff to 0.6.1
  • Loading branch information
jorenham committed Aug 17, 2024
2 parents 9c1e244 + 3796077 commit 24d3a88
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 28 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.12", "3.13.0-beta.2"]
python-version: ["3.10", "3.12", "3.13-dev"]
pandas: ["without", "with"]
exclude:
- python-version: "3.13.0-beta.2"
- python-version: "3.13-dev"
os: windows-latest

runs-on: ${{ matrix.os }}
Expand All @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v4

- name: install scipy deps
if: ${{ matrix.python-version == '3.13.0-beta.2' }}
if: ${{ matrix.python-version == '3.13-dev' }}
run: >
sudo apt-get install
gcc
Expand Down
39 changes: 20 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pre-commit = "^3.7.1"
pyright = "^1.1.369"
pytest = "^8.2.2"
pytest-doctestplus = "^1.2.1"
ruff = "^0.4.10"
ruff = "^0.6.1"
tomli = {version = "^2.0.1", python = "<3.11"}
tox = "^4.15.1"

Expand Down Expand Up @@ -229,11 +229,7 @@ ignore = [
"RUF021", # parenthesize-chained-operators
"RUF022", # unsorted-dunder-all
]
typing-modules = [
"lmo.typing",
"numpy.typing",
"typing_extensions",
]
typing-modules = ["typing_extensions"]

[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D", "N806", "ANN", "PLC2701"]
Expand Down

0 comments on commit 24d3a88

Please sign in to comment.