Skip to content

Commit

Permalink
Merge pull request #328 from takluyver/limits-core-3.x
Browse files Browse the repository at this point in the history
Declare projects compliant with flit_core 3.x by default
  • Loading branch information
takluyver authored Mar 23, 2020
2 parents 359114b + 804feba commit 68c0ed5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ or as a directory — and you want to distribute it.
.. code-block:: ini
[build-system]
requires = ["flit_core >=2,<3"]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
Expand Down
2 changes: 1 addition & 1 deletion doc/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ to look like this:
.. code-block:: toml
[build-system]
requires = ["flit_core >=2,<3"]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
Other changes include:
Expand Down
2 changes: 1 addition & 1 deletion doc/pyproject_toml.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defined by PEP 517. For any project using Flit, it will look like this:
.. code-block:: toml
[build-system]
requires = ["flit_core >=2,<3"]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
Metadata section
Expand Down
2 changes: 1 addition & 1 deletion flit/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def initialise(self):

TEMPLATE = """\
[build-system]
requires = ["flit_core >=2,<3"]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["flit_core >=2.2.0,<3"]
requires = ["flit_core >=2.2.0,<4"]
build-backend = "flit_core.buildapi"

[tool.flit.metadata]
Expand Down

0 comments on commit 68c0ed5

Please sign in to comment.