Skip to content

Commit

Permalink
[ITensorGLMakie] Update to GLMakie v0.9 (#1402)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfishman committed Apr 29, 2024
1 parent 8e7f61b commit cf40eea
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 99 deletions.
95 changes: 0 additions & 95 deletions .github/workflows/comment_trigger_test_itensorglmakie.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Run ITensorGLMakie tests on push to main
name: Run ITensorGLMakie tests (Ubuntu)

on:
push:
branches:
- main
tags: '*'
pull_request:

jobs:
test:
Expand All @@ -22,6 +24,9 @@ jobs:
- '1'
arch:
- x64
exclude:
# MacOS not available on x86
- {os: 'macOS-latest', arch: 'x86'}
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
Expand All @@ -41,4 +46,4 @@ jobs:
- run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev
- name: Install Julia dependencies and run tests
run: |
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --depwarn=yes -e 'using Pkg; Pkg.activate(temp=true); Pkg.develop(path="./NDTensors"); Pkg.develop(path="."); Pkg.develop(path="./ITensorVisualizationBase"); Pkg.develop(path="./ITensorMakie"); Pkg.develop(path="./ITensorGLMakie"); Pkg.test("ITensorGLMakie")'
JULIA_REFERENCETESTS_UPDATE=true DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --depwarn=yes -e 'using Pkg; Pkg.activate(temp=true); Pkg.develop(path="./NDTensors"); Pkg.develop(path="."); Pkg.develop(path="./ITensorVisualizationBase"); Pkg.develop(path="./ITensorMakie"); Pkg.develop(path="./ITensorGLMakie"); Pkg.test("ITensorGLMakie")'
4 changes: 2 additions & 2 deletions ITensorGLMakie/Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name = "ITensorGLMakie"
uuid = "3f718f31-6db8-4f43-a433-67cb5c73363e"
authors = ["Matthew Fishman <mfishman@flatironinstitute.org>"]
version = "0.1.1"
version = "0.1.2"

[deps]
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
ITensorMakie = "72ca75eb-df6f-4d6b-80c5-d5eab17be3f9"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
GLMakie = "0.7, 0.8"
GLMakie = "0.9"
ITensorMakie = "0.1.2"
Reexport = "1.2.2"
julia = "1.6"
Binary file modified ITensorGLMakie/test/references/R.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ITensorGLMakie/test/references/R1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ITensorGLMakie/test/references/R2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ITensorGLMakie/test/references/T.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ITensorGLMakie/test/references/tn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

2 comments on commit cf40eea

@mtfishman
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register subdir=ITensorGLMakie

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/105786

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a ITensorGLMakie-v0.1.2 -m "<description of version>" cf40eea778ffb1d6da85f313ac02a158fb99b552
git push origin ITensorGLMakie-v0.1.2

Please sign in to comment.