From f0f98d0a7e3a5ae85774f65545b56a509dceb78a Mon Sep 17 00:00:00 2001 From: "Colin B. Macdonald" Date: Thu, 25 May 2023 21:39:38 -0700 Subject: [PATCH 1/2] Update NEWS file --- NEWS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 1f9faf5..ddab453 100644 --- a/NEWS.md +++ b/NEWS.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Use system Python 3 interpreter by default. +- Dropped support for Python 2 and Python < 3.7. ### Fixed - Ensure that `pyobject` constructor does not recurse or overwrite itself. @@ -22,4 +23,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is the first release of the Octave Pythonic package. -[Unreleased]: https://gitlab.com/mtmiller/octave-pythonic/compare/v0.0.1...master +[Unreleased]: https://gitlab.com/gnu-octave/octave-pythonic/-/compare/v0.0.1...main -- GitLab From 22c94bf8dd30e1eb72ca158b554078b61e079dd3 Mon Sep 17 00:00:00 2001 From: "Colin B. Macdonald" Date: Thu, 25 May 2023 21:39:49 -0700 Subject: [PATCH 2/2] CI: tweak doctest repo location --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 34a3019..15802b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,7 +17,7 @@ variables: &variables CXXFLAGS: "-g -O2 -D_FORTIFY_SOURCE=2 -fstack-protector-strong -Wall -Wdate-time -Wextra -Wformat=2" DEBIAN_FRONTEND: "noninteractive" DL_LD: g++-8 ## FIXME: drop when Octave version 6 becomes latest - DOCTEST_GIT_REPOSITORY: "https://github.com/catch22/octave-doctest.git" + DOCTEST_GIT_REPOSITORY: "https://github.com/gnu-octave/octave-doctest.git" DOCTEST_GIT_TAG: "v0.8.0" DOCTEST_ROOT: "/tmp/doctest" LIBSSL_DEV: "libssl-dev" -- GitLab