Skip to content

Add Python 3.10 to the testing #425

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 10, 2022
Merged
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
39 changes: 23 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,73 +10,80 @@ jobs:
include:
- BUILD_TYPE: Debug
WITH_BFD: yes
PYTHON_VERSION: 3.9
PYTHON_VERSION: '3.10'
TEST_SYMPY: yes
OS: ubuntu-20.04
CC: gcc

- BUILD_TYPE: Debug
WITH_BFD: yes
PYTHON_VERSION: '3.9'
TEST_SYMPY: yes
OS: ubuntu-20.04
CC: gcc

- BUILD_TYPE: Release
PYTHON_VERSION: 3.7
PYTHON_VERSION: '3.7'
BUILD_SHARED_LIBS: yes
OS: ubuntu-20.04
CC: gcc

- BUILD_TYPE: Release
PYTHON_VERSION: 3.7
PYTHON_VERSION: '3.7'
WITH_MPFR: yes
INTEGER_CLASS: gmpxx
WITH_NUMPY: no
OS: ubuntu-20.04
CC: gcc

- BUILD_TYPE: Release
PYTHON_VERSION: 3.8
PYTHON_VERSION: '3.8'
WITH_MPC: yes
OS: ubuntu-20.04
CC: gcc

- BUILD_TYPE: Release
WITH_MPFR: yes
PYTHON_VERSION: 3.8
PYTHON_VERSION: '3.8'
OS: ubuntu-20.04
CC: gcc

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

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

#- BUILD_TYPE: Debug
# PYTHON_VERSION: 3.9
# PYTHON_VERSION: '3.9'
# WITH_BFD: yes
# WITH_PIRANHA: yes
# OS: ubuntu-20.04
# CC: gcc

- BUILD_TYPE: Debug
PYTHON_VERSION: 3.8
PYTHON_VERSION: '3.8'
WITH_BFD: yes
BUILD_SHARED_LIBS: yes
OS: ubuntu-20.04
CC: clang

- BUILD_TYPE: Release
PYTHON_VERSION: 3.7
PYTHON_VERSION: '3.7'
WITH_NUMPY: yes
OS: ubuntu-20.04
CC: clang

- BUILD_TYPE: Debug
PYTHON_VERSION: 3.8
PYTHON_VERSION: '3.8'
WITH_SYMPY: yes
WITH_LLVM: 13
WITH_SCIPY: yes
Expand All @@ -85,31 +92,31 @@ jobs:
EXTRA_APT_PACKAGES: 'llvm-13'

- BUILD_TYPE: Debug
PYTHON_VERSION: 3.7
PYTHON_VERSION: '3.7'
WITH_SCIPY: yes
WITH_LLVM: 5.0
OS: macos-latest
CC: clang

- BUILD_TYPE: Release
PYTHON_VERSION: 3.9
PYTHON_VERSION: '3.9'
WITH_NUMPY: no
OS: macos-latest
CC: clang

- BUILD_TYPE: Debug
PYTHON_VERSION: 3.7
PYTHON_VERSION: '3.7'
WITH_NUMPY: no
OS: macos-latest
CC: gcc

- BUILD_TYPE: Release
PYTHON_VERSION: 3.8
PYTHON_VERSION: '3.8'
OS: macos-latest
CC: gcc

- BUILD_TYPE: Release
PYTHON_VERSION: 3.8
PYTHON_VERSION: '3.8'
OS: ubuntu-20.04
WITH_MPC: yes
WITH_MPFR: yes
Expand Down