Accepting request 844257 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/844257 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pendulum?expand=0&rev=6
This commit is contained in:
commit
b7da748ab2
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:64d21643d40baa614b0ae5658d577e0c29470eae98a4cc1738bc11c3792dfa1a
|
|
||||||
size 160492
|
|
BIN
pendulum-2.1.2.tar.gz
(Stored with Git LFS)
Normal file
BIN
pendulum-2.1.2.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 27 10:26:38 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Update to version 2.1.2
|
||||||
|
* Added support for build scripts without the setup.py file
|
||||||
|
generation in the editable builder (#2718).
|
||||||
|
* Fixed an error occurring when using older lock files (#2717).
|
||||||
|
- Changelog for version 2.1.1
|
||||||
|
* Fixed errors where invalid timezones were matched in
|
||||||
|
from_format() (#374).
|
||||||
|
* Fixed errors when subtracting negative timedeltas (#419).
|
||||||
|
* Fixed errors in total units computation for durations
|
||||||
|
with years and months (#482).
|
||||||
|
* Fixed an error where the fold attribute was overridden
|
||||||
|
when using replace() (#414).
|
||||||
|
* Fixed an error where now() was not returning the
|
||||||
|
correct result on DST transitions (#483).
|
||||||
|
* Fixed inconsistent typing annotation for the parse()
|
||||||
|
function (#452).
|
||||||
|
* Added the pl locale (#459).
|
||||||
|
- Build the extensions
|
||||||
|
- Kill dephell dependency
|
||||||
|
- Disable python2 package (no python2-poetry-core in Leaps
|
||||||
|
sr#842815)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 27 08:48:57 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
Mon Apr 27 08:48:57 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
@ -17,28 +17,30 @@
|
|||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
|
%define skip_python2 1
|
||||||
Name: python-pendulum
|
Name: python-pendulum
|
||||||
Version: 2.1.0
|
Version: 2.1.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python datetimes made easy
|
Summary: Python datetimes made easy
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://pendulum.eustace.io
|
URL: https://pendulum.eustace.io
|
||||||
# https://github.com/sdispater/pendulum/issues/453
|
# https://github.com/sdispater/pendulum/issues/453
|
||||||
Source: https://github.com/sdispater/pendulum/archive/%{version}.tar.gz
|
Source: https://github.com/sdispater/pendulum/archive/%{version}.tar.gz#/pendulum-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module devel}
|
||||||
|
BuildRequires: %{python_module freezegun}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module poetry-core}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module python-dateutil >= 2.6}
|
BuildRequires: %{python_module python-dateutil >= 2.6}
|
||||||
BuildRequires: %{python_module pytz >= 2018.3}
|
BuildRequires: %{python_module pytz >= 2020.1}
|
||||||
BuildRequires: %{python_module pytzdata >= 2018.3}
|
BuildRequires: %{python_module pytzdata >= 2020.1}
|
||||||
BuildRequires: %{python_module setuptools}
|
|
||||||
BuildRequires: %{python_module typing}
|
BuildRequires: %{python_module typing}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-dephell-rpm-macros
|
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: python3-dephell
|
|
||||||
Requires: python-python-dateutil >= 2.6
|
Requires: python-python-dateutil >= 2.6
|
||||||
Requires: python-pytz >= 2018.3
|
Requires: python-pytz >= 2020.1
|
||||||
Requires: python-pytzdata >= 2018.3
|
Requires: python-pytzdata >= 2020.1
|
||||||
Requires: python-typing
|
Requires: python-typing
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@ -47,22 +49,25 @@ Python datetimes made easy
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n pendulum-%{version}
|
%setup -q -n pendulum-%{version}
|
||||||
%dephell_gensetup
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%{python_expand # remove source files
|
||||||
|
find %{buildroot}%{$python_sitearch} -name '*.c' -delete
|
||||||
|
%fdupes %{buildroot}%{$python_sitearch}
|
||||||
|
}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%pytest
|
%pytest_arch
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/*
|
%{python_sitearch}/pendulum
|
||||||
|
%{python_sitearch}/pendulum-%{version}*-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user