Skip to content

Commit 35afd1a

Browse files
committed
try fix CI
1 parent e8be728 commit 35afd1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ install-oracle:
4444

4545
# lock to specific python and versions of given dependencies
4646
test-lock +PACKAGES:
47-
poetry run python -c "import tomlkit,sys;f='pyproject.toml';d=tomlkit.parse(open(f).read());d['project']['requires-python']='{}'.format(sys.version.split()[0]);open(f,'w').write(tomlkit.dumps(d))"
47+
pip install tomlkit
48+
python -c "import tomlkit,sys;f='pyproject.toml';d=tomlkit.parse(open(f).read());d['project']['requires-python']='{}'.format(sys.version.split()[0]);open(f,'w').write(tomlkit.dumps(d))"
4849
poetry add {{ PACKAGES }}
4950

5051
# run static type checking

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ django-stubs = {extras = ["compatible-mypy"], version = ">=4.2.7"}
8686
ruff = "^0.9"
8787
typing-extensions = "^4.12.2"
8888
pre-commit = "^4.0.1"
89-
tomlkit = "^0.13.2"
9089

9190
[tool.poetry.group.docs]
9291
optional = true

0 commit comments

Comments
 (0)