Skip to content

fix: Downgrade to poetry-core==1.0.8 for databind.core and databind.json packages because of #64 #65

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

Merged
merged 4 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changelog/_unreleased.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[[entries]]
id = "32835227-2170-4c19-952b-4649de1bfe7d"
type = "fix"
description = "Downgrade to `poetry-core==1.0.8` for `databind.core` and `databind.json` packages because of #64"
author = "[email protected]"
issues = [
"https://github.com/NiklasRosenstein/python-databind/issues/64",
]
1 change: 1 addition & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
with: { python-version: "${{ matrix.python-version }}" }
- run: slap install --link --no-venv-check
- run: slap test
- run: slap publish --dry

documentation:
runs-on: ubuntu-20.04
Expand Down
10 changes: 5 additions & 5 deletions databind.core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Databind is a library inspired by jackson-databind to de-/seriali
authors = ["Niklas Rosenstein <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "_databind_core_proxy.py", from = "src"}]
packages = [{include = "_databind_core_proxy", from = "src"}]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/NiklasRosenstein/python-databind/issues"
Expand All @@ -16,9 +16,9 @@ Repository = "https://github.com/NiklasRosenstein/python-databind"
python = "^3.8.0"
databind = "^4.5.0"

[tool.slap]
typed = true

[build-system]
requires = ["poetry-core==1.9.0"]
requires = ["poetry-core==1.0.8"] # Don't ugprade, see https://github.com/NiklasRosenstein/python-databind/issues/64
build-backend = "poetry.core.masonry.api"

[tool.slap]
typed = true
4 changes: 2 additions & 2 deletions databind.json/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "De-/serialize Python dataclasses to or from JSON payloads. Compat
authors = ["Niklas Rosenstein <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "_databind_json_proxy.py", from = "src"}]
packages = [{include = "_databind_json_proxy", from = "src"}]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/NiklasRosenstein/python-databind/issues"
Expand All @@ -17,7 +17,7 @@ python = "^3.8.0"
databind = "^4.5.0"

[build-system]
requires = ["poetry-core==1.9.0"]
requires = ["poetry-core==1.0.8"] # Don't ugprade, see https://github.com/NiklasRosenstein/python-databind/issues/64
build-backend = "poetry.core.masonry.api"

[tool.slap]
Expand Down
5 changes: 5 additions & 0 deletions databind/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ license = "MIT"
readme = "README.md"
packages = [{include = "databind/core", from = "src"}, {include = "databind/json", from = "src"}]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/NiklasRosenstein/python-databind/issues"
Documentation = "https://niklasrosenstein.github.io/python-databind/"
Repository = "https://github.com/NiklasRosenstein/python-databind"

[tool.poetry.dependencies]
python = "^3.8.0"
Deprecated = "^1.2.12"
Expand Down
Loading