Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for the project section (PEP 621) #708

Merged
merged 8 commits into from
Sep 2, 2024
8 changes: 5 additions & 3 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Poetry Downstream Tests

on:
pull_request: {}
push:
branches: [main]
workflow_dispatch:
# TODO: enable again after updating Poetry to use poetry-core 2.0.0
# pull_request: {}
# push:
# branches: [main]

jobs:
tests:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry-core"
version = "1.9.0"
version = "2.0.0.dev0"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/poetry/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# this cannot presently be replaced with importlib.metadata.version as when building
# itself, poetry-core is not available as an installed distribution.
__version__ = "1.9.0"
__version__ = "2.0.0.dev0"

__vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()

Expand Down
Loading
Loading