SaashaJoshi / piQture

piQture: A quantum machine learning library for image processing.
https://saashajoshi.github.io/piQture/
Apache License 2.0
15 stars 7 forks source link

Bump python version. #50

Closed SaashaJoshi closed 2 months ago

SaashaJoshi commented 6 months ago

Add Python 3.12 to the pipeline package and workflow yaml files. Verify tests for py3.12

SaashaJoshi commented 5 months ago

Python 3.12 deprecates distutils which is still being used by other internal packages.

SaashaJoshi commented 3 months ago

The test for QCNN fails due to changes in called_once_with(), which returned a boolean value, and assert_called_once_with(), which returns an assertion.

Python 3.12 doesn't allow calling called_once_with() without an assert_ prefix.

SaashaJoshi commented 2 months ago

Merging the update-python branch without solving the called_once_with() error. Track issue #102 for updates on this.