From 64f45ad559b2ed6b59e0b52f4c2da38c84edd8f69f11405ea16f96af7e8904e2 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Fri, 27 May 2022 20:41:00 +0000 Subject: [PATCH] - Update to 3.1.0: - Remove support for Python 3.6. It reached end-of-life in December 2021. - Include docs, examples, and tests in the source release. - Require mypy 0.960 and use the latest typing features, as these seem to work nicely even on Python 3.7, given that the typing information is in separate *.pyi files and that you have a recent mypy version. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pykka?expand=0&rev=4 --- pykka-3.0.2.tar.gz | 3 --- pykka-3.1.0.tar.gz | 3 +++ python-pykka.changes | 13 +++++++++++++ python-pykka.spec | 11 +++++++---- 4 files changed, 23 insertions(+), 7 deletions(-) delete mode 100644 pykka-3.0.2.tar.gz create mode 100644 pykka-3.1.0.tar.gz diff --git a/pykka-3.0.2.tar.gz b/pykka-3.0.2.tar.gz deleted file mode 100644 index 4faf4c0..0000000 --- a/pykka-3.0.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b146203f0266207ca132520a10f1c2de872a2186a7a9c778bdaa45f681ae3d07 -size 44440 diff --git a/pykka-3.1.0.tar.gz b/pykka-3.1.0.tar.gz new file mode 100644 index 0000000..c7ba67b --- /dev/null +++ b/pykka-3.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b82cfc82160572a38cfaa35586c6897b228acfb641d19654f4a2fde0975729a +size 46267 diff --git a/python-pykka.changes b/python-pykka.changes index 37afdef..3f95ad9 100644 --- a/python-pykka.changes +++ b/python-pykka.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Fri May 27 20:24:54 UTC 2022 - Matej Cepl + +- Update to 3.1.0: + - Remove support for Python 3.6. It reached end-of-life in + December 2021. + - Include docs, examples, and tests in the source + release. + - Require mypy 0.960 and use the latest typing features, as + these seem to work nicely even on Python 3.7, given that the + typing information is in separate *.pyi files and that you + have a recent mypy version. + ------------------------------------------------------------------- Fri May 27 12:11:57 UTC 2022 - Matej Cepl diff --git a/python-pykka.spec b/python-pykka.spec index ce2b253..bf11017 100644 --- a/python-pykka.spec +++ b/python-pykka.spec @@ -19,13 +19,13 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define modname pykka Name: python-pykka -Version: 3.0.2 +Version: 3.1.0 Release: 0 Summary: A Python implementation of the actor model License: Apache-2.0 Group: Development/Languages/Python -URL: http://www.pykka.org/ -Source: https://github.com/jodal/%{modname}/archive/refs/tags/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz +URL: https://github.com/jodal/pykka +Source: https://files.pythonhosted.org/packages/source/p/%{modname}/%{modname}-%{version}.tar.gz BuildRequires: %{python_module pip} BuildRequires: %{python_module poetry} BuildRequires: %{python_module pytest-mock} @@ -54,7 +54,10 @@ rm -v docs/_build/.gitignore %install %pyproject_install -%python_expand %fdupes %{buildroot}%{$python_sitelib} +# gh#jodal/pykka#172 +%{python_expand rm %{buildroot}%{$python_sitelib}/{setup.cfg,tox.ini} +%fdupes %{buildroot}%{$python_sitelib} +} %check %pytest