proj/pkgcore/pkgcore:master commit in: src/pkgcore/, /
"Arthur Zamarin" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786214878.a9fb2cca311486ee09d012b0c34361396d58c1c3.arthurzam@gentoo> |
commit: a9fb2cca311486ee09d012b0c34361396d58c1c3 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Sat Aug 8 18:43:09 2026 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Sat Aug 8 18:47:58 2026 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=a9fb2cca new release 0.12.38 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> NEWS.rst | 2 +- pyproject.toml | 4 ++-- src/pkgcore/__init__.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 455b78604..e9090b113 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -3,7 +3,7 @@ Release Notes ============= ---------------------------- -pkgcore 0.12.38 (unreleased) +pkgcore 0.12.38 (2026-08-08) ---------------------------- Features diff --git a/pyproject.toml b/pyproject.toml index e2c6204ba..e597b9694 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ "flit_core >=3.8,<4", - "snakeoil@git+https://github.com/pkgcore/snakeoil.git#master", + "snakeoil >= 0.11.4", ] build-backend = "py_build" backend-path = ["."] @@ -32,7 +32,7 @@ classifiers = [ dynamic = ["version"] dependencies = [ - "snakeoil@git+https://github.com/pkgcore/snakeoil.git#master", + "snakeoil >= 0.11.4", "lxml", ] diff --git a/src/pkgcore/__init__.py b/src/pkgcore/__init__.py index 34a86e31e..23b11bdb3 100644 --- a/src/pkgcore/__init__.py +++ b/src/pkgcore/__init__.py @@ -1,4 +1,4 @@ __title__ = "pkgcore" -__version__ = "0.12.38.dev0" -__version_info__ = (0, 12, 38, "dev0") +__version__ = "0.12.38" +__version_info__ = (0, 12, 38) __python_mininum_version__ = (3, 12, 0)