Skip to content

Commit 07b3d77

Browse files
Require exact version of python (3.11)
1 parent 0984378 commit 07b3d77

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ name = "codeplain"
77
version = "0.2.1"
88
description = "Transform plain language specifications into working code"
99
readme = "README.md"
10-
requires-python = ">=3.11"
11-
classifiers = [
10+
requires-python = "==3.11"
11+
classifiers = [
1212
"Environment :: Console",
13-
"Intended Audience :: Developers",
14-
"Operating System :: OS Independent",
13+
"Intended Audience :: Developers",
14+
"Operating System :: OS Independent",
1515
"Topic :: Software Development :: Code Generators",
1616
]
1717
dependencies = [
1818
"python-liquid2==0.3.0",
1919
"mistletoe==1.3.0",
20-
"requests==2.32.3",
20+
"requests==2.32.3",
2121
"tiktoken==0.12.0",
2222
"PyYAML==6.0.2",
2323
"gitpython==3.1.42",
@@ -44,7 +44,7 @@ codeplain = "plain2code:main"
4444
include = [
4545
"*.py",
4646
"config/**/*",
47-
"render_machine/**/*",
47+
"render_machine/**/*",
4848
"standard_template_library/**/*",
4949
"tui/**/*"
5050
]

0 commit comments

Comments
 (0)