unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#61012] [PATCH 0/3] gnu: Astronomy packages update.
@ 2023-01-22 23:55 Sharlatan Hellseher
  2023-01-22 23:58 ` [bug#61012] [PATCH 1/3] gnu: python-astropy: Update to 5.2.1 Sharlatan Hellseher
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Sharlatan Hellseher @ 2023-01-22 23:55 UTC (permalink / raw)
  To: 61012; +Cc: Sharlatan Hellseher

Hi Guix!

Please, review a patch series upgrading python-astropy to 5.2.1 and leaf depended packages from it.

> ./pre-inst-env guix build $(./pre-inst-env guix refresh python-astropy python-sunpy python-regions  --list-dependent | awk -F: '{print $2}')
> /gnu/store/jmjfnnhkiml5ma67mqcl03pzjimv28is-python-sunpy-4.1.1
> /gnu/store/2jkiybv7nwycpq6jlhd5z3770pyrlqqr-python-astroquery-0.4.6
> /gnu/store/cn79jqbw0vnb6pymgr3lp2hj7m4iy3yr-python-poppy-1.0.3
> /gnu/store/6sad3r5abi5m77zlaks8rj8a013h6qin-python-regions-0.7

Sharlatan Hellseher (3):
  gnu: python-astropy: Update to 5.2.1.
  gnu: python-sunpy: Update to 4.1.1.
  gnu: python-regions: Update to 0.7.

 gnu/packages/astronomy.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)


base-commit: 356e33641a35f32a87f7c2eb20666d848dd7e44f
-- 
2.39.1





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

* [bug#61012] [PATCH 1/3] gnu: python-astropy: Update to 5.2.1.
  2023-01-22 23:55 [bug#61012] [PATCH 0/3] gnu: Astronomy packages update Sharlatan Hellseher
@ 2023-01-22 23:58 ` Sharlatan Hellseher
  2023-01-22 23:58   ` [bug#61012] [PATCH 2/3] gnu: python-sunpy: Update to 4.1.1 Sharlatan Hellseher
  2023-01-22 23:58   ` [bug#61012] [PATCH 3/3] gnu: python-regions: Update to 0.7 Sharlatan Hellseher
  2023-01-23  0:01 ` [bug#61012] [PATCH] gnu: python-photutils: Update to 1.6.0 Sharlatan Hellseher
  2023-01-27 16:31 ` bug#61012: [PATCH 0/3] gnu: Astronomy packages update Ludovic Courtès
  2 siblings, 2 replies; 6+ messages in thread
From: Sharlatan Hellseher @ 2023-01-22 23:58 UTC (permalink / raw)
  To: 61012; +Cc: Sharlatan Hellseher

* gnu/packages/astronomy.scm (python-astropy): Update to 5.2.1.
---
 gnu/packages/astronomy.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 2b5efc84a8..f8e1bd4bcd 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -984,13 +984,13 @@ (define-public celestia-gtk
 (define-public python-astropy
   (package
     (name "python-astropy")
-    (version "5.1.1")
+    (version "5.2.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "astropy" version))
        (sha256
-        (base32 "10dxjim60ch4qznqa5s63q936mkvy95p0k26kcwzv43hmybdcjxs"))
+        (base32 "08xc6brs7xwiqchhsjq8l10p6qc5p68cfxps7s889spqfyh2gbpn"))
        (modules '((guix build utils)))
        (snippet
         '(begin
-- 
2.39.1





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

* [bug#61012] [PATCH 2/3] gnu: python-sunpy: Update to 4.1.1.
  2023-01-22 23:58 ` [bug#61012] [PATCH 1/3] gnu: python-astropy: Update to 5.2.1 Sharlatan Hellseher
@ 2023-01-22 23:58   ` Sharlatan Hellseher
  2023-01-22 23:58   ` [bug#61012] [PATCH 3/3] gnu: python-regions: Update to 0.7 Sharlatan Hellseher
  1 sibling, 0 replies; 6+ messages in thread
From: Sharlatan Hellseher @ 2023-01-22 23:58 UTC (permalink / raw)
  To: 61012; +Cc: Sharlatan Hellseher

* gnu/packages/astronomy.scm (python-sunpy): Update to 4.1.1.
---
 gnu/packages/astronomy.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index f8e1bd4bcd..e7b53833f8 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1544,13 +1544,13 @@ (define-public python-sgp4
 (define-public python-sunpy
   (package
     (name "python-sunpy")
-    (version "4.0.6")
+    (version "4.1.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "sunpy" version))
        (sha256
-        (base32 "0aiirb6l8zshdrpsvh6d5ki759ah9zfm9gbl0in985hprwwxyrq1"))))
+        (base32 "1h8dnsic96bxm5l278vk6jj5h4bh1b143fghsvv5rhigk137vysp"))))
     (build-system pyproject-build-system)
     (arguments
      (list
-- 
2.39.1





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

* [bug#61012] [PATCH 3/3] gnu: python-regions: Update to 0.7.
  2023-01-22 23:58 ` [bug#61012] [PATCH 1/3] gnu: python-astropy: Update to 5.2.1 Sharlatan Hellseher
  2023-01-22 23:58   ` [bug#61012] [PATCH 2/3] gnu: python-sunpy: Update to 4.1.1 Sharlatan Hellseher
@ 2023-01-22 23:58   ` Sharlatan Hellseher
  1 sibling, 0 replies; 6+ messages in thread
From: Sharlatan Hellseher @ 2023-01-22 23:58 UTC (permalink / raw)
  To: 61012; +Cc: Sharlatan Hellseher

* gnu/packages/astronomy.scm (python-regions): Update to 0.7.
---
 gnu/packages/astronomy.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index e7b53833f8..6f50d5bb7f 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1420,13 +1420,13 @@ (define-public python-pyvo
 (define-public python-regions
   (package
     (name "python-regions")
-    (version "0.6")
+    (version "0.7")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "regions" version))
        (sha256
-        (base32 "0p95bxxw4dgd16rh1yj7zvfbijk52dqvqj20nj6q8kr5ms08acl0"))))
+        (base32 "08wsg9kxnki5pz8gdp81bq06jdmsip382fl02rvnr96cvzr7wf3m"))))
     (build-system python-build-system)
     (arguments
      `(#:test-target "pytest"
-- 
2.39.1





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

* [bug#61012] [PATCH] gnu: python-photutils: Update to 1.6.0.
  2023-01-22 23:55 [bug#61012] [PATCH 0/3] gnu: Astronomy packages update Sharlatan Hellseher
  2023-01-22 23:58 ` [bug#61012] [PATCH 1/3] gnu: python-astropy: Update to 5.2.1 Sharlatan Hellseher
@ 2023-01-23  0:01 ` Sharlatan Hellseher
  2023-01-27 16:31 ` bug#61012: [PATCH 0/3] gnu: Astronomy packages update Ludovic Courtès
  2 siblings, 0 replies; 6+ messages in thread
From: Sharlatan Hellseher @ 2023-01-23  0:01 UTC (permalink / raw)
  To: 61012; +Cc: Sharlatan Hellseher

* gnu/packages/astronomy.scm (python-photutils): Update to 1.6.0.
---
 gnu/packages/astronomy.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 6f50d5bb7f..2f08b656c0 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1309,13 +1309,13 @@ (define-public python-mpl-animators
 (define-public python-photutils
   (package
     (name "python-photutils")
-    (version "1.5.0")
+    (version "1.6.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "photutils" version))
        (sha256
-        (base32 "129n268wnziprrv09f7y6f98cj1vh1bzp7ygsna10h3ilnjplkq1"))))
+        (base32 "0w4kxl6aqjp2wv396krw30kwg6cmmska8gvgpihm2i2zxyzz39vd"))))
     (build-system python-build-system)
     (arguments
      `(#:test-target "pytest"
-- 
2.39.1





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

* bug#61012: [PATCH 0/3] gnu: Astronomy packages update.
  2023-01-22 23:55 [bug#61012] [PATCH 0/3] gnu: Astronomy packages update Sharlatan Hellseher
  2023-01-22 23:58 ` [bug#61012] [PATCH 1/3] gnu: python-astropy: Update to 5.2.1 Sharlatan Hellseher
  2023-01-23  0:01 ` [bug#61012] [PATCH] gnu: python-photutils: Update to 1.6.0 Sharlatan Hellseher
@ 2023-01-27 16:31 ` Ludovic Courtès
  2 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2023-01-27 16:31 UTC (permalink / raw)
  To: Sharlatan Hellseher; +Cc: 61012-done

Hi,

Sharlatan Hellseher <sharlatanus@gmail.com> skribis:

>   gnu: python-astropy: Update to 5.2.1.
>   gnu: python-sunpy: Update to 4.1.1.
>   gnu: python-regions: Update to 0.7.

+ python-photutils update

Applied, thanks!

Ludo’.




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

end of thread, other threads:[~2023-01-27 16:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-22 23:55 [bug#61012] [PATCH 0/3] gnu: Astronomy packages update Sharlatan Hellseher
2023-01-22 23:58 ` [bug#61012] [PATCH 1/3] gnu: python-astropy: Update to 5.2.1 Sharlatan Hellseher
2023-01-22 23:58   ` [bug#61012] [PATCH 2/3] gnu: python-sunpy: Update to 4.1.1 Sharlatan Hellseher
2023-01-22 23:58   ` [bug#61012] [PATCH 3/3] gnu: python-regions: Update to 0.7 Sharlatan Hellseher
2023-01-23  0:01 ` [bug#61012] [PATCH] gnu: python-photutils: Update to 1.6.0 Sharlatan Hellseher
2023-01-27 16:31 ` bug#61012: [PATCH 0/3] gnu: Astronomy packages update Ludovic Courtès

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).