Skip to content

Commit

Permalink
fix: change minimum Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
padawanphysicist committed Jan 2, 2024
1 parent dfbbd0f commit cfec10f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For more examples, take a look at the [examples](examples/) directory.

## Requirements
- GNU Guile 3+
- Python 3.11+
- Python 3.7+

# Installation
If you are cloning the repository make sure you run the `bootstrap` script
Expand Down
6 changes: 1 addition & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

AC_INIT([guile-pyffi], [1.0.1], [victor_santos@fisica.ufc.br])
AC_CONFIG_MACRO_DIRS([build-aux])
#AC_CONFIG_MACRO_DIRS([build-aux])
AC_CONFIG_SRCDIR(pyffi.scm)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign])
Expand Down Expand Up @@ -51,15 +50,12 @@ fi
AC_ENABLE_SHARED(yes)
AC_ENABLE_STATIC(no)

#AM_PROG_LIBTOOL
# Init libtool
LT_INIT([shared disable-static])

# Checks for programs.
AC_PROG_CC
AM_PATH_PYTHON([3.11])
#AC_SUBST(PYTHON_ABI,[`$PYTHON -c 'import sys; print("m") if int(sys.version_info.minor) < 8 else print("")'`])
#AC_SUBST(pythonversion, [PYTHON_VERSION])
AM_PATH_PYTHON([3.7])
AC_SUBST(PYTHON_ABI,[`$PYTHON -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")'`])
AC_CONFIG_FILES([Makefile libpyffi/Makefile pyffi/Makefile tests/Makefile])
AC_CONFIG_FILES([env], [chmod +x env])
Expand Down

0 comments on commit cfec10f

Please sign in to comment.