Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Updates for release 0.28.0 development #75

Merged
merged 5 commits into from
Nov 21, 2022
Merged
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
26 changes: 26 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# Release 0.28.0-dev

### New features since last release

### Breaking changes

- Deprecate Python 3.7 wheels.
[(#75)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/pull/75)


### Improvements

### Documentation

### Bug fixes

- Pin CMake to 3.24.x in wheel-builder to avoid PYthon not found error in CMake 3.25.
[(#75)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/pull/75)

### Contributors

This release contains contributions from (in alphabetical order):

Lee J. O'Riordan.

---
# Release 0.27.0

### New features since last release
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_wheel_manylinux2014.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ on:
pull_request:

env:
CIBW_BUILD: 'cp37-* cp38-* cp39-* cp310-* cp311-*'
CIBW_BUILD: 'cp38-* cp39-* cp310-* cp311-*'
mlxd marked this conversation as resolved.
Show resolved Hide resolved
CIBW_BUILD_FRONTEND: "pip"
CIBW_SKIP: "*-musllinux*"

# Python build settings
CIBW_BEFORE_BUILD: |
python -m pip install pybind11 ninja cmake auditwheel && python -m pip install --no-deps cuquantum
yum install -y gcc gcc-c++
python -m pip install ninja cmake~=3.24.3 auditwheel
python -m pip install --no-deps cuquantum
yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-rhel7.repo -y
yum clean all
yum -y install cuda cmake git openssh wget
yum -y install cuda git openssh wget

# ensure nvcc is available
CIBW_ENVIRONMENT: PATH=$PATH:/usr/local/cuda/bin LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64:$(python -c "import site; print( f'{site.getsitepackages()[0]}/cuquantum/lib')")
Expand Down
2 changes: 1 addition & 1 deletion pennylane_lightning_gpu/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.27.0"
__version__ = "0.28.0_dev0"