File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 3737 strategy :
3838 matrix :
3939 os : [ubuntu-20.04]
40- python-version : ["3.7", "3.11", "pypy-3.9"]
40+ python-version : ["3.8", "3.11", "pypy-3.9"]
41+ fail-fast : false
4142 name : CPython ${{ matrix.python-version }}-${{ matrix.os }}
4243 steps :
4344 - uses : actions/checkout@v4
4950 cache-dependency-path : ' pyproject.toml'
5051 - name : Install dependencies
5152 run : |
52- pip install -u pip
53+ pip install -U pip
5354 pip install -e ".[test]"
5455 - name : Start MongoDB
5556 uses : supercharge/mongodb-github-action@1.10.0
7071 cache-dependency-path : ' pyproject.toml'
7172 # Build docs on lowest supported Python for furo
7273 python-version : ' 3.8'
74+ - name : Install dependencies
75+ run : |
76+ pip install -U pip
77+ pip install -e ".[docs]"
7378 - name : Build docs
7479 run : |
7580 cd docs
Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ module = ["test.*"]
7777disable_error_code = [" no-untyped-def" , " no-untyped-call" ]
7878
7979[tool .ruff ]
80- target-version = " py37"
8180line-length = 100
8281
8382[tool .ruff .lint ]
Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
3+
4+ def test_basic ():
5+ pass
You can’t perform that action at this time.
0 commit comments