Skip to content

Updating python #1039

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 4 commits into from
Jul 28, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ out.txt
tests/data/jobs/
main.html
main
.python-version
debug*

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"juliacall>=0.9.14",
"numpy>=1.26.0",
"numpy>=2.1.0",
"pydantic>=2.0",
"scipy>=1.9.3",
"scipy>=1.0.0",
"pandas>=2.1.0",
"bokeh>=3.2.2",
"tabulate>=0.9.0",
Expand All @@ -32,9 +32,9 @@ dependencies = [
"beartype>=0.15.0",
"simplejson>=3.19.1",
"plum-dispatch>=2.2.2",
"numba>=0.58.0",
"numba>=0.61.0",
]
requires-python = ">=3.9,<3.13"
requires-python = ">=3.10,<3.14"
readme = "README.md"
license = {text = "Apache License 2.0"}

Expand Down
2 changes: 1 addition & 1 deletion src/bloqade/analog/visualization/ir_visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def mock_data(Ndata):

def mock_register():
p = figure(width=300, height=300, toolbar_location="above")
p.circle(x=np.random.rand(10), y=np.random.rand(10))
p.circle(x=np.random.rand(10), y=np.random.rand(10), size=4)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was breaking the ci with the new minor version of Bokeh. I looked to make sure we are setting the values of the circle everywhere else and we are.


return p

Expand Down
Loading