Skip to content

Commit 11556d8

Browse files
committed
Editable installs are possible without setup.py/cfg since setuptools v64
1 parent eba0d8e commit 11556d8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tic-tac-toe-ai-python/source_code_bonus/tic-tac-toe/library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pyproject.toml
22

33
[build-system]
4-
requires = ["setuptools", "wheel"]
4+
requires = ["setuptools>=64.0.0", "wheel"]
55
build-backend = "setuptools.build_meta"
66

77
[project]

tic-tac-toe-ai-python/source_code_final/tic-tac-toe/library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
2+
requires = ["setuptools>=64.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

tic-tac-toe-ai-python/source_code_step_1/tic-tac-toe/library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
2+
requires = ["setuptools>=64.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

tic-tac-toe-ai-python/source_code_step_2/tic-tac-toe/library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
2+
requires = ["setuptools>=64.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

tic-tac-toe-ai-python/source_code_step_3/tic-tac-toe/library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
2+
requires = ["setuptools>=64.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

0 commit comments

Comments
 (0)