15
0

- Update to 0.13.3:

* Support poetry-core 2.0 by @s-t-e-v-e-n-k in #37
- Drop patch support-poetry-core-2.patch, included upstream.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-easydev?expand=0&rev=20
This commit is contained in:
2025-01-13 03:02:33 +00:00
committed by Git OBS Bridge
parent e359bd701d
commit 41ab237da2
5 changed files with 11 additions and 37 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fcf2a26adfdc1e108ef65f6b5cbf917740feb4726ef3332ce2ec2cf29b722d6a
size 81280

3
easydev-0.13.3.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:347f814bde55f444cd4f1e6550189957f5933b257c4d7ade21198db370e417de
size 83581

View File

@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Jan 13 03:01:27 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 0.13.3:
* Support poetry-core 2.0 by @s-t-e-v-e-n-k in #37
- Drop patch support-poetry-core-2.patch, included upstream.
-------------------------------------------------------------------
Fri Jan 10 04:35:36 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -17,14 +17,12 @@
Name: python-easydev
Version: 0.13.2
Version: 0.13.3
Release: 0
Summary: Common utilities to ease the development of Python packages
License: BSD-3-Clause
URL: https://github.com/cokelaer/easydev
Source: https://github.com/cokelaer/easydev/archive/refs/tags/v%{version}.tar.gz#/easydev-%{version}.tar.gz
# PATCH-FIX-UPSTREAM gh#cokelaer/easydev#37
Patch0: support-poetry-core-2.patch
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-colorama

View File

@@ -1,31 +0,0 @@
From 57840ffd66a23e9546c3cf97f870094d0b6dd5aa Mon Sep 17 00:00:00 2001
From: Steve Kowalik <steven@wedontsleep.org>
Date: Fri, 10 Jan 2025 15:33:10 +1100
Subject: [PATCH] Support poetry-core 2.0
poetry-core 2.0 has been released, and it is a lot more strict with the
configuration in pyproject.toml.
---
pyproject.toml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 52c55a3..2ad7f62 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,11 +2,13 @@
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
-[tool.poetry]
+[project]
name = "easydev"
version = "0.13.2"
description = "Commn utilities to ease development of Python packages"
-authors = ["Thomas Cokelaer <thomas.cokelaer@pasteur.fr>"]
+authors = [
+ { "name" = "Thomas Cokelaer", "email" = "thomas.cokelaer@pasteur.fr" },
+]
license = "BSD-3-Clause"
readme = "README.rst"
keywords = ["config", "decorators", "development"]