Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:

- BUILD_TYPE: Debug
WITH_BFD: yes
PYTHON_VERSION: '3.10'
PYTHON_VERSION: '3.14'
TEST_SYMPY: yes
OS: ubuntu-22.04
CC: gcc

- BUILD_TYPE: Debug
WITH_BFD: yes
PYTHON_VERSION: '3.9'
PYTHON_VERSION: '3.14'
TEST_SYMPY: yes
OS: ubuntu-22.04
CC: gcc
Expand Down Expand Up @@ -70,21 +70,21 @@ jobs:
CC: gcc

- BUILD_TYPE: Release
PYTHON_VERSION: '3.9'
PYTHON_VERSION: '3.14'
WITH_MPC: yes
OS: ubuntu-22.04
CC: gcc

- BUILD_TYPE: Release
PYTHON_VERSION: '3.9'
PYTHON_VERSION: '3.11'
WITH_MPC: yes
INTEGER_CLASS: flint
WITH_FLINT: yes
OS: ubuntu-22.04
CC: gcc

#- BUILD_TYPE: Debug
# PYTHON_VERSION: '3.9'
# PYTHON_VERSION: '3.12'
# WITH_BFD: yes
# WITH_PIRANHA: yes
# OS: ubuntu-22.04
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
CC: clang

- BUILD_TYPE: Release
PYTHON_VERSION: '3.9'
PYTHON_VERSION: '3.14'
WITH_NUMPY: no
OS: macos-15-intel
CC: clang
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ Moraxyc <i@qaq.li>
Aaron Miller <78561124+aaron-skydio@users.noreply.github.com>
Firat Bezir <bezir.1@osu.edu>
Adrian Ostrowski <adrian.ostrowski@intel.com>
Liam Keegan <liam@keegan.ch>
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set(CMAKE_PREFIX_PATH ${SymEngine_DIR} ${CMAKE_PREFIX_PATH})

include(GNUInstallDirs)

find_package(SymEngine 0.14.0 REQUIRED CONFIG
find_package(SymEngine 0.15.0 REQUIRED CONFIG
PATH_SUFFIXES lib/cmake/symengine cmake/symengine CMake/)
message("SymEngine_DIR : " ${SymEngine_DIR})
message("SymEngine Version : " ${SymEngine_VERSION})
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Install prerequisites.

```bash
CMake >= 3.21
Python3 >= 3.9
SymEngine >= 0.14.0
Python3 >= 3.11
SymEngine >= 0.15.0
pip
setuptools_scm # will be automatically downloaded by pip
scikit-build-core # will be automatically downloaded by pip
Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ environment:
- BUILD_TYPE: "Release"
COMPILER: MSVC15
PLATFORM: "x64"
PYTHON_VERSION: 310-x64
PYTHON_VERSION: 314-x64
CONDA_INSTALL_LOCN: C:\\Miniconda38-x64
WITH_MPFR: yes
WITH_MPC: yes
WITH_LLVM: yes
- BUILD_TYPE: "Release"
COMPILER: MSVC15
PLATFORM: "Win32"
PYTHON_VERSION: 39
PYTHON_VERSION: 311
CONDA_INSTALL_LOCN: C:\\Miniconda38-x64
WITH_MPFR: yes
WITH_MPC: yes
- BUILD_TYPE: "Release"
COMPILER: MSVC15
PLATFORM: "x64"
PYTHON_VERSION: 310-x64
PYTHON_VERSION: 313-x64
CONDA_INSTALL_LOCN: C:\\Miniconda38-x64
WITH_MPFR: yes
WITH_MPC: yes
Expand All @@ -37,7 +37,7 @@ environment:
- BUILD_TYPE: "Release"
COMPILER: MSVC15
PLATFORM: "x64"
PYTHON_VERSION: 39-x64
PYTHON_VERSION: 314-x64
WITH_SYMPY: no
CONDA_INSTALL_LOCN: C:\\Miniconda38-x64
- BUILD_TYPE: "Release"
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ authors = [
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.8"
requires-python = ">=3.11"
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3.15',

@cclauss cclauss Sep 2, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The final release candidate of Python 3.15 currently fails on CI.

]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion symengine_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e82057046de6cbba381360ebcd3955c60358ecdc
v0.15.0
Loading