Skip to content

Commit

Permalink
add support for PEP 621: deactivate downstream tests and bump version…
Browse files Browse the repository at this point in the history
… to 2.0.0.dev0 (#708)
  • Loading branch information
radoering committed May 19, 2024
1 parent ceee136 commit b08c33d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
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

0 comments on commit b08c33d

Please sign in to comment.