Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Commit

Permalink
[update to 1.14.1] Fix error in parse_timedelta doctest when run in t…
Browse files Browse the repository at this point in the history
…he year running up to a leap day. Fixes #7.

Jason R. Coombs (20):
      Update readme to reference UTC module.
      Add workaround for Teemu/pytest-sugar#159.
      Remove workaround for pytest-sugar 159, now fixed.
      Remove pytest-sugar plugin from standard pipelines as recommended in Teemu/pytest-sugar#159.
      Add test demonstrating aware comparisons
      Prefer pytest-checkdocs to collective.checkdocs
      Suppress deprecation warning in docutils
      Remove use of setup_requires. Builders now require pip 10 or later to build/install from sdist. Older installers will still install the packages from wheels. Ref tox-dev/tox#809.
      Revert "Remove use of setup_requires. Builders now require pip 10 or later to build/install from sdist. Older installers will still install the packages from wheels. Ref tox-dev/tox#809."
      Indicate build backend of setuptools
      Add support for cutting releases without DPL and using pep517.
      Rely on pep517 0.5
      Add documentation on the skeleton. Fixes #5.
      Add workaround for DeprecationWarning in flake8
      Use consistent encoding quoting in pyproject.toml
      Clarify purpose of local/upstream extras
      Suppress E117 as workaround for PyCQA/pycodestyle#836
      Amend skeleton documentation to expand on the value of the approach.
      Remove sudo declaration in Travis config.
      Fix error in parse_timedelta doctest when run in the year running up to a leap day. Fixes #7.

Sebastian Kriems (1):
      spaces, style and formatters (#4)
  • Loading branch information
fenrus75 committed Apr 14, 2019
1 parent c545b68 commit 2701687
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKG_NAME := tempora
URL = https://files.pythonhosted.org/packages/e5/8e/cab8051815c822f96dd570df010e18a52575535e32b3f90e536570221aaa/tempora-1.14.tar.gz
URL = https://files.pythonhosted.org/packages/2f/b5/5b0464385454c5ca93a39a1c6acefdf574aeb10ef45fa8958b3832cc7d96/tempora-1.14.1.tar.gz
ARCHIVES =

include ../common/Makefile.common
4 changes: 2 additions & 2 deletions options.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = tempora
url = https://files.pythonhosted.org/packages/e5/8e/cab8051815c822f96dd570df010e18a52575535e32b3f90e536570221aaa/tempora-1.14.tar.gz
url = https://files.pythonhosted.org/packages/2f/b5/5b0464385454c5ca93a39a1c6acefdf574aeb10ef45fa8958b3832cc7d96/tempora-1.14.1.tar.gz
archives =
giturl = https://github.com/jaraco/tempora.git

Expand All @@ -12,7 +12,7 @@ allow_test_failures = false
# unset %build ld_as_needed variable
asneeded = false
# this package is trusted enough to automatically update (used by other tools)
autoupdate = false
autoupdate = true
# extend flags with '-std=gnu++98
broken_c++ = false
# disable parallelization during build
Expand Down
2 changes: 1 addition & 1 deletion release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13
14
14 changes: 8 additions & 6 deletions tempora.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Generated by: autospec.py
#
Name : tempora
Version : 1.14
Release : 13
URL : https://files.pythonhosted.org/packages/e5/8e/cab8051815c822f96dd570df010e18a52575535e32b3f90e536570221aaa/tempora-1.14.tar.gz
Source0 : https://files.pythonhosted.org/packages/e5/8e/cab8051815c822f96dd570df010e18a52575535e32b3f90e536570221aaa/tempora-1.14.tar.gz
Version : 1.14.1
Release : 14
URL : https://files.pythonhosted.org/packages/2f/b5/5b0464385454c5ca93a39a1c6acefdf574aeb10ef45fa8958b3832cc7d96/tempora-1.14.1.tar.gz
Source0 : https://files.pythonhosted.org/packages/2f/b5/5b0464385454c5ca93a39a1c6acefdf574aeb10ef45fa8958b3832cc7d96/tempora-1.14.1.tar.gz
Summary : Objects and routines pertaining to date and time (tempora)
Group : Development/Tools
License : MIT
Expand Down Expand Up @@ -66,17 +66,19 @@ python3 components for the tempora package.


%prep
%setup -q -n tempora-1.14
%setup -q -n tempora-1.14.1

%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C
export SOURCE_DATE_EPOCH=1541080573
export SOURCE_DATE_EPOCH=1555201209
export MAKEFLAGS=%{?_smp_mflags}
python3 setup.py build

%install
export MAKEFLAGS=%{?_smp_mflags}
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/tempora
cp LICENSE %{buildroot}/usr/share/package-licenses/tempora/LICENSE
Expand Down
2 changes: 1 addition & 1 deletion upstream
Original file line number Diff line number Diff line change
@@ -1 +1 @@
59f51215a57763bc7f94f058e2c0352adbc372d7/tempora-1.14.tar.gz
d26b45cfc2c941f029092e9217b4d2a97bb62979/tempora-1.14.1.tar.gz

0 comments on commit 2701687

Please sign in to comment.