Skip to content

Commit 6141478

Browse files
committed
wip
1 parent f287d9b commit 6141478

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/dist-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/setup-python@v6
3838
with:
3939
# Build sdist on lowest supported Python
40-
python-version: '3.9'
40+
python-version: '3.10'
4141

4242
- name: Install python requirements
4343
run: |

.github/workflows/test-python.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ jobs:
3535
enable-cache: true
3636
python-version: ${{ matrix.python-version }}
3737
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
38-
- run: just install
3938
- run: just lint
40-
- run: just docs
41-
- run: just doctest
4239
build:
4340
runs-on: ${{ matrix.os }}
4441
strategy:

justfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ default:
22
echo 'Hello, world!'
33

44
test:
5-
echo 'TODO'
5+
echo 'TODO'
6+
7+
lint:
8+
uvx pre-commit run --all-files --hook-stage manual

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ version = "0.1.0"
88
description = "PyMongo support for Flask applications"
99
readme = "README.md"
1010
license = { file="LICENSE" }
11-
requires-python = ">=3.10"
11+
requires-python = ">=3.10"

0 commit comments

Comments
 (0)