Commit 2dddcf3f authored by Hartmut Goebel's avatar Hartmut Goebel
Browse files

Release 0.9.1.

parents af236d33 e217a162
Loading
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
;; Per-directory local variables for GNU Emacs 23 and later.
;; Copyright 2022 by Hartmut Goebel
;; Licensed under the GNU General Public License v3 or later (GPLv3+).
;; SPDX-License-Identifier: GPL-3.0-or-later

(
 (nil
+3 −0
Original line number Diff line number Diff line
# -*- mode: sh -*-
# Copyright 2022-2025 by Hartmut Goebel
# SPDX-License-Identifier: CC0-1.0

test -d $(direnv_layout_dir) && ls $(direnv_layout_dir) | grep python
__has_pyenv=$?
if [ $__has_pyenv -ne 0  ] ; then
+3 −0
Original line number Diff line number Diff line
# SPDX-FileCopyrightText: NONE
# SPDX-License-Identifier: CC0-1.0

*       text=auto

*.odt	-text
+4 −0
Original line number Diff line number Diff line
# -*- mode: gitignore; -*-
# SPDX-FileCopyrightText: NONE
# SPDX-License-Identifier: CC0-1.0

# crazy-compiler standard excludes
/projectlogo.png
/projectlogo.ico
+4 −1
Original line number Diff line number Diff line
# Copyright (C) 2008-2025 Hartmut Goebel <h.goebel@crazy-compilers.com>
# SPDX-License-Identifier: GPL-3.0-or-later

#pdf:
#  script:
#    - make pdf
@@ -12,7 +15,7 @@ before_script:

test:
  image: python:${PYTHON_VERSION}-slim
  script: tox -e "py${PYTHON_VERSION/./}"
  script: tox -e "py"
  parallel:
    matrix:
      - PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
Loading