Skip to content
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

Docs build timeouts with recent Cython3 change #4618

Closed
Xarthisius opened this issue Aug 4, 2023 · 0 comments · Fixed by #4619
Closed

Docs build timeouts with recent Cython3 change #4618

Xarthisius opened this issue Aug 4, 2023 · 0 comments · Fixed by #4619
Labels
release critical Highest priority (in a milestone)
Milestone

Comments

@Xarthisius
Copy link
Member

Bug report

Bug summary

We missed something in the most recent PR enabling Cython3...

Code for reproduction

>> Contents of the script: b95e111f    
import yt    
    
# We load the last time frame    
ds = yt.load("MOOSE_sample_data/mps_out.e", step=-1)    
    
# create a default scene    
sc = yt.create_scene(ds, ("connect2", "temp"))    
    
# override the default colormap. This time we also override    
# the default color bounds    
ms = sc.get_source()    
ms.cmap = "hot"    
ms.color_bounds = (500.0, 1700.0)    
    
# adjust the camera position and orientation    
cam = sc.camera     
camera_position = ds.arr([-1.0, 1.0, -0.5], "code_length")    
north_vector = ds.arr([0.0, -1.0, -1.0], "dimensionless")    
cam.width = ds.arr([0.04, 0.04, 0.04], "code_length")    
cam.set_position(camera_position, north_vector)    
    
# increase the default resolution    
cam.resolution = (800, 800)    
    
# render, draw the element boundaries, and save    
sc.render()    
sc.annotate_mesh_lines()    
sc.save()    
    
>> The execution of the script b95e111f took 5042.339649 s  
@neutrinoceros neutrinoceros added this to the 4.3.0 milestone Aug 4, 2023
@neutrinoceros neutrinoceros added the release critical Highest priority (in a milestone) label Aug 4, 2023
Xarthisius added a commit to Xarthisius/yt that referenced this issue Aug 4, 2023
@neutrinoceros neutrinoceros linked a pull request Aug 4, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release critical Highest priority (in a milestone)
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants