We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35afd1a commit b1f0d7bCopy full SHA for b1f0d7b
justfile
@@ -45,7 +45,7 @@ install-oracle:
45
# lock to specific python and versions of given dependencies
46
test-lock +PACKAGES:
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))"
+ 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))"
49
poetry add {{ PACKAGES }}
50
51
# run static type checking
0 commit comments