Skip to content
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
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- os: windows-latest
python: 313
platform_id: win_amd64
- os: windows-latest
python: 314
platform_id: win_amd64

# Linux 64 bit manylinux2014
- os: ubuntu-latest
Expand All @@ -50,6 +53,10 @@ jobs:
python: 313
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: 314
platform_id: manylinux_x86_64
manylinux_image: manylinux2014

# MacOS x86_64
- os: macos-15-intel
Expand All @@ -64,6 +71,9 @@ jobs:
- os: macos-15-intel
python: 313
platform_id: macosx_x86_64
- os: macos-15-intel
python: 314
platform_id: macosx_x86_64

# MacOS arm64
- os: macos-14
Expand All @@ -78,6 +88,9 @@ jobs:
- os: macos-14
python: 313
platform_id: macosx_arm64
- os: macos-14
python: 314
platform_id: macosx_arm64


steps:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- os: windows-latest
python: 313
platform_id: win_amd64
- os: windows-latest
python: 314
platform_id: win_amd64

# Linux 64 bit manylinux2014
- os: ubuntu-latest
Expand All @@ -44,6 +47,10 @@ jobs:
python: 313
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: 314
platform_id: manylinux_x86_64
manylinux_image: manylinux2014

# MacOS x86_64
- os: macos-15-intel
Expand All @@ -58,6 +65,9 @@ jobs:
- os: macos-15-intel
python: 313
platform_id: macosx_x86_64
- os: macos-15-intel
python: 314
platform_id: macosx_x86_64

# MacOS arm64
- os: macos-14
Expand All @@ -72,6 +82,9 @@ jobs:
- os: macos-14
python: 313
platform_id: macosx_arm64
- os: macos-14
python: 314
platform_id: macosx_arm64


steps:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- os: windows-latest
python: 313
platform_id: win_amd64
- os: windows-latest
python: 314
platform_id: win_amd64

# Linux 64 bit manylinux2014
- os: ubuntu-latest
Expand All @@ -46,6 +49,10 @@ jobs:
python: 313
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: 314
platform_id: manylinux_x86_64
manylinux_image: manylinux2014

# MacOS x86_64
- os: macos-15-intel
Expand All @@ -60,6 +67,9 @@ jobs:
- os: macos-15-intel
python: 313
platform_id: macosx_x86_64
- os: macos-15-intel
python: 314
platform_id: macosx_x86_64

# MacOS arm64
- os: macos-14
Expand All @@ -74,6 +84,9 @@ jobs:
- os: macos-14
python: 313
platform_id: macosx_arm64
- os: macos-14
python: 314
platform_id: macosx_arm64


steps:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- os: windows-latest
python: 313
platform_id: win_amd64
- os: windows-latest
python: 314
platform_id: win_amd64

# Linux 64 bit manylinux2014
- os: ubuntu-latest
Expand All @@ -44,6 +47,10 @@ jobs:
python: 313
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: 314
platform_id: manylinux_x86_64
manylinux_image: manylinux2014

# MacOS x86_64
- os: macos-15-intel
Expand All @@ -58,6 +65,9 @@ jobs:
- os: macos-15-intel
python: 313
platform_id: macosx_x86_64
- os: macos-15-intel
python: 314
platform_id: macosx_x86_64

# MacOS arm64
- os: macos-14
Expand All @@ -72,6 +82,9 @@ jobs:
- os: macos-14
python: 313
platform_id: macosx_arm64
- os: macos-14
python: 314
platform_id: macosx_arm64


steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Types of changes:
## Unreleased

### Added
- Added Python 3.14 to CI/CD workflow build and test matrices across all supported platforms (Windows, Linux, macOS x86_64, macOS arm64). ([#298](https://github.com/qBraid/pyqasm/pull/298))

### Improved / Modified
- Moved the `visit_map` from the `visit_statement` function to a class level variable for improved efficiency. ([#279](https://github.com/qBraid/pyqasm/pull/279))
Expand Down
Loading