Skip to content

Commit

Permalink
⬆️ Bump poetry from 1.2.0rc1 to 1.2.0 (#47)
Browse files Browse the repository at this point in the history
* ⬆️ Bump poetry from 1.2.0rc1 to 1.2.0

Bumps [poetry](https://github.com/python-poetry/poetry) from 1.2.0rc1 to 1.2.0.
- [Release notes](https://github.com/python-poetry/poetry/releases)
- [Changelog](https://github.com/python-poetry/poetry/blob/master/CHANGELOG.md)
- [Commits](python-poetry/poetry@1.2.0rc1...1.2.0)

* 🎨 Use the pretty name of dependencies in poetry.lock file

Make the lockfile consistent with poetry 1.2.0, see python-poetry/poetry#6243.

* 👽 Use poetry-core instead of poetry in build system

Let build-backend depend only on poetry-core instead of full poetry. Partial revert of c2a190f in #3. Motivated by conda-forge/staged-recipes#20198 (comment).
  • Loading branch information
weiji14 committed Sep 1, 2022
1 parent 7f41032 commit 51716ca
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Install poetry package manager and dependencies from poetry.lock
- name: Install Poetry python dependencies
run: |
pip install poetry==1.2.0rc1
pip install poetry==1.2.0
poetry install ${{ matrix.extra-packages }}
poetry self add poetry-dynamic-versioning-plugin
poetry show
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Install Poetry and dynamic-versioning plugin
run: |
pip install poetry==1.2.0rc1
pip install poetry==1.2.0
poetry self add poetry-dynamic-versioning-plugin
poetry show
Expand Down
2 changes: 1 addition & 1 deletion docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ cd zen3geo
mamba create --name zen3geo python=3.10
mamba activate zen3geo
pip install poetry==1.2.0rc1
pip install poetry==1.2.0
poetry install --extras "raster spatial vector"
```

Expand Down
60 changes: 30 additions & 30 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ metadata = true
style = "pep440"

[build-system]
requires = ["poetry>=1.2.0rc1", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.1.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 51716ca

Please sign in to comment.