all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#32260] [PATCH 00/21] Python updates
@ 2018-07-24 12:33 Marius Bakke
  2018-07-24 12:35 ` Marius Bakke
  2018-07-28 15:40 ` bug#32260: [PATCH 00/21] Python updates Marius Bakke
  0 siblings, 2 replies; 27+ messages in thread
From: Marius Bakke @ 2018-07-24 12:33 UTC (permalink / raw)
  To: 32260

This series updates Python to 3.7 and bumps many of the python-*
packages to the latest upstream releases.

Also, Python 3.7 is now reproducible on my system.  As well as most of
the library packages.  Woohoo!  :-)

Do we have time for a 'python-updates' round before core-updates?
Relatedly, can the existing 'python-updates' branch be deleted?

Marius Bakke (21):
  gnu: python: Remove outdated comment and phases.
  gnu: python: Update to 3.7.0.
  gnu: python: Rebuild bytecode after removing tests.
  gnu: python: Build reproducibly.
  gnu: python-py: Add missing dependency on setuptools-scm.
  gnu: python-py: Update to 1.5.4.
  gnu: python-py: Update home page.
  gnu: python-pyflakes: Update to 2.0.0.
  gnu: python-more-itertools: Update to 4.2.0.
  gnu: python-pycodestyle: Update to 2.4.0.
  gnu: python-setuptools: Update to 40.0.0.
  gnu: python-pytest-runner: Update to 4.2.
  gnu: python-flake8: Update to 3.5.0.
  gnu: python-hypothesis: Update to 3.66.6.
  gnu: python-pytest-cov: Update to 2.5.1.
  gnu: Add python-invoke.
  gnu: python-pytest: Update to 3.6.3.
  gnu: python-pytest-mock: Update to 1.10.0.
  gnu: docbook-xsl: Delete bundled jars.
  gnu: gdb: Fix build with Python >= 3.7.
  gnu: python-fonttools: Update to 3.28.0.

 gnu/local.mk                              |   1 +
 gnu/packages/check.scm                    |  35 ++---
 gnu/packages/docbook.scm                  |  10 +-
 gnu/packages/gdb.scm                      |   1 +
 gnu/packages/patches/gdb-python-3.7.patch |  52 +++++++
 gnu/packages/python.scm                   | 178 ++++++++--------------
 guix/build/python-build-system.scm        |   2 -
 7 files changed, 140 insertions(+), 139 deletions(-)
 create mode 100644 gnu/packages/patches/gdb-python-3.7.patch

-- 
2.18.0

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

end of thread, other threads:[~2018-07-29 13:35 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-24 12:33 [bug#32260] [PATCH 00/21] Python updates Marius Bakke
2018-07-24 12:35 ` Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 01/21] gnu: python: Remove outdated comment and phases Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 02/21] gnu: python: Update to 3.7.0 Marius Bakke
2018-07-26 14:24     ` Efraim
2018-07-24 12:35   ` [bug#32260] [PATCH 03/21] gnu: python: Rebuild bytecode after removing tests Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 04/21] gnu: python: Build reproducibly Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 05/21] gnu: python-py: Add missing dependency on setuptools-scm Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 06/21] gnu: python-py: Update to 1.5.4 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 07/21] gnu: python-py: Update home page Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 08/21] gnu: python-pyflakes: Update to 2.0.0 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 09/21] gnu: python-more-itertools: Update to 4.2.0 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 10/21] gnu: python-pycodestyle: Update to 2.4.0 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 11/21] gnu: python-setuptools: Update to 40.0.0 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 12/21] gnu: python-pytest-runner: Update to 4.2 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 13/21] gnu: python-flake8: Update to 3.5.0 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 14/21] gnu: python-hypothesis: Update to 3.66.6 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 15/21] gnu: python-pytest-cov: Update to 2.5.1 Marius Bakke
2018-07-24 12:35   ` [bug#32260] [PATCH 16/21] gnu: Add python-invoke Marius Bakke
2018-07-24 12:36   ` [bug#32260] [PATCH 17/21] gnu: python-pytest: Update to 3.6.3 Marius Bakke
2018-07-24 12:36   ` [bug#32260] [PATCH 18/21] gnu: python-pytest-mock: Update to 1.10.0 Marius Bakke
2018-07-24 12:36   ` [bug#32260] [PATCH 19/21] gnu: docbook-xsl: Delete bundled jars Marius Bakke
2018-07-24 12:41     ` Marius Bakke
2018-07-24 12:36   ` [bug#32260] [PATCH 20/21] gnu: gdb: Fix build with Python >= 3.7 Marius Bakke
2018-07-24 12:36   ` [bug#32260] [PATCH 21/21] gnu: python-fonttools: Update to 3.28.0 Marius Bakke
2018-07-28 15:40 ` bug#32260: [PATCH 00/21] Python updates Marius Bakke
2018-07-29 13:34   ` [bug#32260] " Ludovic Courtès

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.