unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#35955] [PATCH] gnu: python-pytz: Update to 2019.1
@ 2019-05-28 12:47 h.nasajpour
  2019-05-28 19:43 ` Danny Milosavljevic
  2019-12-10  6:25 ` bug#35955: " Brett Gilio
  0 siblings, 2 replies; 4+ messages in thread
From: h.nasajpour @ 2019-05-28 12:47 UTC (permalink / raw)
  To: 35955; +Cc: h.nasajpour

* gnu/packages/time.scm (python-pytz): Update to 2019.1
---
 gnu/packages/time.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 747e4cf080..9bbfe07803 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -92,14 +92,14 @@ to a file.")
 (define-public python-pytz
   (package
     (name "python-pytz")
-    (version "2018.5")
+    (version "2019.1")
     (source
      (origin
       (method url-fetch)
       (uri (pypi-uri "pytz" version ".tar.gz"))
       (sha256
        (base32
-        "0xzj5gkpdn2da8m6j47chlp6zrzcypv9m0fjv4236q3jw4fyzfgz"))))
+        "0hg1r2c41gnmljdsdmdgy6kb1zkfmxsf49imd96g8znp4cyxsiyp"))))
     (build-system python-build-system)
     (home-page "http://pythonhosted.org/pytz")
     (synopsis "Python timezone library")
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#35955] [PATCH] gnu: python-pytz: Update to 2019.1
  2019-05-28 12:47 [bug#35955] [PATCH] gnu: python-pytz: Update to 2019.1 h.nasajpour
@ 2019-05-28 19:43 ` Danny Milosavljevic
  2019-05-31 19:18   ` Marius Bakke
  2019-12-10  6:25 ` bug#35955: " Brett Gilio
  1 sibling, 1 reply; 4+ messages in thread
From: Danny Milosavljevic @ 2019-05-28 19:43 UTC (permalink / raw)
  To: h.nasajpour; +Cc: 35955

[-- Attachment #1: Type: text/plain, Size: 251 bytes --]

Note to self: This would rebuild libreoffice, so it should probably go into
core-updates or something.  Probably after current core-updates was merged.

Also, for some reason none of the tests (which do exist) get discovered.

Otherwise OK.



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#35955] [PATCH] gnu: python-pytz: Update to 2019.1
  2019-05-28 19:43 ` Danny Milosavljevic
@ 2019-05-31 19:18   ` Marius Bakke
  0 siblings, 0 replies; 4+ messages in thread
From: Marius Bakke @ 2019-05-31 19:18 UTC (permalink / raw)
  To: Danny Milosavljevic, h.nasajpour; +Cc: 35955

[-- Attachment #1: Type: text/plain, Size: 439 bytes --]

Danny Milosavljevic <dannym@scratchpost.org> writes:

> Note to self: This would rebuild libreoffice, so it should probably go into
> core-updates or something.  Probably after current core-updates was merged.

We don't treat LibreOffice specially, do we?

However python{,2}-pytz has almost 600 dependents, so it should go to
'staging' once the current branch is merged.

Feel free to push it to a new branch ('staging-next'?) meanwhile.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#35955: [PATCH] gnu: python-pytz: Update to 2019.1
  2019-05-28 12:47 [bug#35955] [PATCH] gnu: python-pytz: Update to 2019.1 h.nasajpour
  2019-05-28 19:43 ` Danny Milosavljevic
@ 2019-12-10  6:25 ` Brett Gilio
  1 sibling, 0 replies; 4+ messages in thread
From: Brett Gilio @ 2019-12-10  6:25 UTC (permalink / raw)
  To: h.nasajpour; +Cc: 35955-done

"h.nasajpour" <h.nasajpour@pantherx.org> writes:

> * gnu/packages/time.scm (python-pytz): Update to 2019.1
> ---
>  gnu/packages/time.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
> index 747e4cf080..9bbfe07803 100644
> --- a/gnu/packages/time.scm
> +++ b/gnu/packages/time.scm
> @@ -92,14 +92,14 @@ to a file.")
>  (define-public python-pytz
>    (package
>      (name "python-pytz")
> -    (version "2018.5")
> +    (version "2019.1")
>      (source
>       (origin
>        (method url-fetch)
>        (uri (pypi-uri "pytz" version ".tar.gz"))
>        (sha256
>         (base32
> -        "0xzj5gkpdn2da8m6j47chlp6zrzcypv9m0fjv4236q3jw4fyzfgz"))))
> +        "0hg1r2c41gnmljdsdmdgy6kb1zkfmxsf49imd96g8znp4cyxsiyp"))))
>      (build-system python-build-system)
>      (home-page "http://pythonhosted.org/pytz")
>      (synopsis "Python timezone library")

Closing as 71c08ee60bb3f62bac0614888fb62405f7a388ab reflects this change
from 2019-06-18.

Thanks!

-- 
Brett M. Gilio
Homepage -- https://scm.pw/
GNU Guix -- https://guix.gnu.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-12-10  6:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-28 12:47 [bug#35955] [PATCH] gnu: python-pytz: Update to 2019.1 h.nasajpour
2019-05-28 19:43 ` Danny Milosavljevic
2019-05-31 19:18   ` Marius Bakke
2019-12-10  6:25 ` bug#35955: " Brett Gilio

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).