Skip to content

Commit

Permalink
drop python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
95-martin-orion authored Jul 13, 2022
1 parent 36e9a0b commit 970b42a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
- os: macos-10.15
name: mac
cibw:
build: "cp36* cp37* cp38* cp39* cp310*"
build: "cp37* cp38* cp39* cp310*"
- os: ubuntu-20.04
name: manylinux2014
cibw:
arch: x86_64
build: "cp36* cp37* cp38* cp39* cp310*"
build: "cp37* cp38* cp39* cp310*"
manylinux_image: manylinux2014
- os: windows-2019
name: win_amd64
architecture: x64
cibw:
build: "cp36-win_amd64 cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64"
build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64"
env:
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
CIBW_SKIP: "*musllinux*"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ jobs:
- os: macos-10.15
name: mac
cibw:
build: "cp36* cp37* cp38* cp39* cp310*"
build: "cp37* cp38* cp39* cp310*"
- os: ubuntu-20.04
name: manylinux2014
cibw:
arch: x86_64
build: "cp36* cp37* cp38* cp39* cp310*"
build: "cp37* cp38* cp39* cp310*"
manylinux_image: manylinux2014
- os: windows-2019
name: win_amd64
architecture: x64
cibw:
build: "cp36-win_amd64 cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64"
build: "cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64"
env:
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
CIBW_SKIP: "*musllinux*"
Expand Down
2 changes: 1 addition & 1 deletion pybind_interface/cuda/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if(APPLE)
endif()

INCLUDE(../GetPybind11.cmake)
find_package(PythonLibs 3.6 REQUIRED)
find_package(PythonLibs 3.7 REQUIRED)
find_package(CUDA REQUIRED)

include_directories(${PYTHON_INCLUDE_DIRS} ${pybind11_SOURCE_DIR}/include)
Expand Down
2 changes: 1 addition & 1 deletion pybind_interface/custatevec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if(APPLE)
endif()

INCLUDE(../GetPybind11.cmake)
find_package(PythonLibs 3.6 REQUIRED)
find_package(PythonLibs 3.7 REQUIRED)
find_package(CUDA REQUIRED)

include_directories(${pybind11_INCLUDE_DIRS})
Expand Down
2 changes: 1 addition & 1 deletion pybind_interface/decide/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ INCLUDE(../GetPybind11.cmake)
if(has_nvcc STREQUAL "")
pybind11_add_module(qsim_decide decide.cpp)
else()
find_package(PythonLibs 3.6 REQUIRED)
find_package(PythonLibs 3.7 REQUIRED)
find_package(CUDA REQUIRED)

include_directories(${PYTHON_INCLUDE_DIRS} ${pybind11_SOURCE_DIR}/include)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def build_extension(self, ext):
url="https://github.com/quantumlib/qsim",
author="Vamsi Krishna Devabathini",
author_email="[email protected]",
python_requires=">=3.3.0",
python_requires=">=3.7.0",
install_requires=requirements,
extras_require={
"dev": dev_requirements,
Expand Down

0 comments on commit 970b42a

Please sign in to comment.