From 0782e01ba709f18bda1cca77cb83e8b73922630e Mon Sep 17 00:00:00 2001 From: Shreyas Agrawal <48771895+splendidbug@users.noreply.github.com> Date: Sun, 11 Aug 2024 03:19:20 -0700 Subject: [PATCH] dependency changes --- .github/workflows/CI.yml | 1 - Project.toml | 4 ++++ src/DocsScraper.jl | 3 --- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 874943f..0b6af25 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -24,7 +24,6 @@ jobs: matrix: version: - "1.10" - - "nightly" os: - ubuntu-latest arch: diff --git a/Project.toml b/Project.toml index 705a918..bc05f3f 100644 --- a/Project.toml +++ b/Project.toml @@ -14,6 +14,8 @@ PromptingTools = "670122d1-24a8-4d70-bfce-740807c42192" Tar = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e" URIParser = "30578b45-9adc-5946-b283-645ec420af67" URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" +LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [compat] AbstractTrees = "0.4.5" @@ -26,6 +28,8 @@ PromptingTools = "0.36.0" URIParser = "0.4.1" URIs = "1.5.1" Tar = "1.10.0" +LinearAlgebra = "<0.0.1, 1" +SparseArrays = "<0.0.1, 1" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" diff --git a/src/DocsScraper.jl b/src/DocsScraper.jl index e78dde7..40bc3ee 100644 --- a/src/DocsScraper.jl +++ b/src/DocsScraper.jl @@ -2,8 +2,6 @@ module DocsScraper using HTTP, Gumbo, AbstractTrees, URIs using Gumbo: HTMLDocument, HTMLElement using EzXML -using Pkg -Pkg.develop(PackageSpec(path="C:\\Users\\shrey\\Desktop\\stuff\\assignments\\grad\\projects\\Julia\\PromptingTools.jl")) using PromptingTools const PT = PromptingTools const RT = PromptingTools.Experimental.RAGTools @@ -27,5 +25,4 @@ include("user_preferences.jl") include("utils.jl") export remove_urls_from_index - end \ No newline at end of file