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

CurricularVisualization Error #139

Open
dmitri-labelle opened this issue Apr 11, 2023 · 0 comments
Open

CurricularVisualization Error #139

dmitri-labelle opened this issue Apr 11, 2023 · 0 comments

Comments

@dmitri-labelle
Copy link

dmitri-labelle commented Apr 11, 2023

Working on Julia 1.8, below is the sample code I'm using and the error.

using CurricularAnalytics
using CurricularVisualization
Phys113 = Course("Contemporary Physics I", 5, prefix="Phys", num="113" )
Phys114 = Course("Contemporary Physics II", 5, prefix="Phys", num="114" )
Phys115 = Course("Contemporary Physics III", 5, prefix="Phys", num="115" )

Math121 = Course("Calc I", 4, prefix="Math", num="121" )
Math122 = Course("Calc II", 4, prefix="Math", num="122" )

coursepre = [Phys113,Phys114, Math122]

for i in 1:length(coursepre)
    add_requisite!(coursepre[i], Phys115, pre)
end

courses = [Phys113,Phys114,Phys115, Math121,Math122]

curric = Curriculum("Physics", courses, institution="Drexel");
visualize(curric)

I get the following error and then whatever I'm running Julia on (I've tried this in Jupyter and in terminal) stalls out.

WARNING: both IOExtras and Base export "closewrite"; uses of it in module ConnectionPool must be qualified
WARNING: both IOExtras and Base export "closewrite"; uses of it in module Servers must be qualified

Below are some of my package versions if that's helpful:

Pkg.status("CurricularVisualization")
Status `~/.julia/environments/v1.8/Project.toml`
  [fbaee398] CurricularVisualization v0.1.4
Pkg.status("WebIO")
Status `~/.julia/environments/v1.8/Project.toml`
  [0f1e0344] WebIO v0.8.20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant