Git Product home page Git Product logo

Comments (3)

DanielVandH avatar DanielVandH commented on June 8, 2024

Hi @pedrosecchi67: Can you show the results of ] st and versioninfo()?

Also, does this happen in a clean environment? i.e. what happens if you do this:

C:\Users\User>julia
               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.9.0 (2023-05-07)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release
|__/                   |

(@v1.9) pkg> activate --temp
  Activating new project at `C:\Users\User\AppData\Local\Temp\jl_b6sWv4`

(jl_b6sWv4) pkg> add DelaunayTriangulation

julia> using DelaunayTriangulation

julia>

from delaunaytriangulation.jl.

pedrosecchi67 avatar pedrosecchi67 commented on June 8, 2024
  • versioninfo(): I'm sorry for the 1.8.0 in the title, it was a mistake. I'm actually using 1.8.3.
Julia Version 1.8.3
Commit 0434deb161e (2022-11-14 20:14 UTC)
Platform Info:
  OS: Linux (x86_64-linux-gnu)
  CPU: 8 × 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-13.0.1 (ORCJIT, tigerlake)
  Threads: 1 on 8 virtual cores
  • ] st:
Status `~/.julia/environments/v1.8/Project.toml`
  [a1957575] AdaptiveDistanceFields v0.1.0
  [68d1b5e8] AdaptiveKDTrees v0.1.0 `../../../Desktop/PhD/AdaptiveKDTrees.jl`
  [2169fc97] AlgebraicMultigrid v0.5.1
  [4d80879e] ArkRoyal v0.1.0 `../../../Desktop/MsE/ArkRoyal`
  [488c2830] BSplines v0.3.3
  [082447d4] ChainRules v1.49.0
  [a2441757] Coverage v1.6.0
  [6023044f] CyclicArrays v0.5.0
  [864edb3b] DataStructures v0.18.13
  [07eb4e4e] Delaunay v1.2.0
  [e0307d49] Enterprise v0.1.0 `../../../Desktop/MsE/Q3D/Enterprise`
  [86b6b26d] Evolutionary v0.11.1
  [429591f6] ExactPredicates v2.2.5
⌃ [6a86dc24] FiniteDiff v2.13.1
  [da98f770] Fletcher v0.1.0 `../../../Desktop/PhD/Fletcher.jl`
  [587475ba] Flux v0.13.16
  [f6369f11] ForwardDiff v0.10.35
  [ea3c2d80] GridTrees v0.1.0 `../../../Desktop/PhD/GridTrees.jl`
  [7073ff75] IJulia v1.24.0
  [88f59080] ILUZero v0.2.0
  [40713840] IncompleteLU v0.2.1
⌅ [a98d9a8b] Interpolations v0.12.10
  [42fd0dbc] IterativeSolvers v0.9.2
  [682c06a0] JSON v0.21.4
⌃ [a5e1c1ea] LatinHypercubeSampling v1.8.0
  [978d7f02] MiniQhull v0.4.0
  [b8a86587] NearestNeighbors v0.4.13
  [6fe1bfb0] OffsetArrays v1.12.9
  [2d409682] OptTestVectors v0.1.0 `../../../Desktop/PhD/OptTestVectors`
  [429524aa] Optim v1.7.5
⌃ [91a5bcdd] Plots v1.38.11
  [8d51ded4] PolySDF v0.1.0 `../../../Desktop/PhD/PolySDF.jl`
  [af69fa37] Preconditioners v0.6.0
  [c46f51b8] ProfileView v1.7.1
  [438e738f] PyCall v1.95.1
  [dee08c22] RegionTrees v0.3.2
⌃ [37e2e3b7] ReverseDiff v1.14.5
⌃ [47a9eef4] SparseDiffTools v1.13.2
  [b445b577] Speedy v0.1.0 `../../../Desktop/PhD/finvol_tools/Speedy`
⌅ [90137ffa] StaticArrays v0.12.6
⌃ [0c5d862f] Symbolics v0.1.32
⌃ [9f7883ad] Tracker v0.2.20
⌃ [28d57a85] Transducers v0.4.75
  [bc48ee85] Tullio v0.3.5
  [64499a7a] WriteVTK v1.18.0
  [cd998857] Yota v0.8.2
⌃ [e88e6eb3] Zygote v0.6.60
  [9abbd945] Profile
Info Packages marked with ⌃ and ⌅ have new versions available, but those with ⌅ are restricted by compatibility constraints from upgrading. To see why use `status --outdated`

I suppose the older version of StaticArrays is to blame.

The package ran smoothly in a clean environment. I'll use it that way, within another package I'm developing, for the time being. It may be that the StaticArraysCore version specification in ExactPredicates is not restrictive enough to old versions of the package:

[compat]
IntervalArithmetic = "^0.20"
StaticArraysCore = "^1.4"
julia = "^1.1"

from delaunaytriangulation.jl.

DanielVandH avatar DanielVandH commented on June 8, 2024

Thanks. Yes I believe it would be an issue with StaticArrays - I've actually gotten this error before for the same reason. Maybe an issue over at ExactPredicates is worthwhile.

It's generally recommended to work in clean environments anyway, activating new projects with ] activate <directory here> and working there saves a lot of compatibility issues.

from delaunaytriangulation.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.