Skip to content

Commit 3cf47c3

Browse files
authored
Updating python (#1039)
* updating lower and upper bounds of python * updating gitignore * Adding required size parameter
1 parent dbde9ca commit 3cf47c3

File tree

5 files changed

+2327
-1958
lines changed

5 files changed

+2327
-1958
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.10", "3.11", "3.12"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ out.txt
55
tests/data/jobs/
66
main.html
77
main
8+
.python-version
9+
debug*
810

911
# Byte-compiled / optimized / DLL files
1012
__pycache__/

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ classifiers = [
1313
"License :: OSI Approved :: Apache Software License",
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
19-
"Programming Language :: Python :: 3.12"
18+
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13"
2020
]
2121
dependencies = [
2222
"juliacall>=0.9.14",
23-
"numpy>=1.26.0",
23+
"numpy>=2.1.0",
2424
"pydantic>=2.0",
25-
"scipy>=1.9.3",
25+
"scipy>=1.0.0",
2626
"pandas>=2.1.0",
2727
"bokeh>=3.2.2",
2828
"tabulate>=0.9.0",
@@ -32,9 +32,9 @@ dependencies = [
3232
"beartype>=0.15.0",
3333
"simplejson>=3.19.1",
3434
"plum-dispatch>=2.2.2",
35-
"numba>=0.58.0",
35+
"numba>=0.61.0",
3636
]
37-
requires-python = ">=3.9,<3.13"
37+
requires-python = ">=3.10,<3.14"
3838
readme = "README.md"
3939
license = {text = "Apache License 2.0"}
4040

src/bloqade/analog/visualization/ir_visualize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def mock_data(Ndata):
7171

7272
def mock_register():
7373
p = figure(width=300, height=300, toolbar_location="above")
74-
p.circle(x=np.random.rand(10), y=np.random.rand(10))
74+
p.circle(x=np.random.rand(10), y=np.random.rand(10), size=4)
7575

7676
return p
7777

0 commit comments

Comments
 (0)