Skip to content

Commit 9731aef

Browse files
authored
get rid of UUID changing stuff (#582)
1 parent 1b4933c commit 9731aef

File tree

3 files changed

+1
-42
lines changed

3 files changed

+1
-42
lines changed

.ci/test_and_change_uuid.jl

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ jobs:
4040
version: ${{ matrix.julia-version }}
4141
arch: ${{ matrix.julia-arch }}
4242
- uses: julia-actions/cache@v2
43-
- run: julia --color=yes .ci/test_and_change_uuid.jl
4443
- uses: julia-actions/julia-buildpkg@v1
4544
- uses: julia-actions/julia-runtest@v1
4645
- uses: julia-actions/julia-processcoverage@v1
@@ -69,7 +68,6 @@ jobs:
6968
version: ${{ matrix.julia-version }}
7069
arch: ${{ matrix.julia-arch }}
7170
- uses: julia-actions/cache@v2
72-
- run: julia --color=yes .ci/test_and_change_uuid.jl
7371
- uses: julia-actions/julia-buildpkg@v1
7472
- uses: julia-actions/julia-runtest@v1
7573
env:
@@ -83,8 +81,7 @@ jobs:
8381
version: 'nightly'
8482
- name: Generate docs
8583
run: |
86-
julia --color=yes -e 'write("Project.toml", replace(read("Project.toml", String), r"uuid = .*?\n" =>"uuid = \"3f01184e-e22b-5df5-ae63-d93ebab69eaf\"\n"));'
87-
julia --project --color=yes -e 'using Pkg; Pkg.activate("docs"); Pkg.instantiate(); Pkg.develop(PackageSpec(path = pwd()))'
84+
julia --project --color=yes -e 'using Pkg; Pkg.activate("docs"); Pkg.develop(PackageSpec(path = pwd()))'
8885
julia --project=docs --color=yes docs/make.jl pdf
8986
env:
9087
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,6 @@ This package ships as part of the Julia stdlib.
2020

2121
SparseArrays.jl provides functionality for working with sparse arrays in Julia.
2222

23-
## Using development versions of this package
24-
25-
To use a newer version of this package, you need to build Julia from scratch. The build process is the same as any other build except that you need to change the commit used in `stdlib/SparseArrays.version`.
26-
27-
It's also possible to load a development version of the package using [the trick used in the Section named "Using the development version of Pkg.jl" in the `Pkg.jl` repo](https://github.com/JuliaLang/Pkg.jl#using-the-development-version-of-pkgjl), but the capabilities are limited as all other packages will depend on the stdlib version of the package and will not work with the modified package.
28-
29-
The main environment may become inconsistent so you might need to run `Pkg.instantiate()` and/or `Pkg.resolve()` in the main or project environments if Julia complains about missing `Serialization.jl` in this package's dependencies.
30-
31-
For older (1.8 and before) `SuiteSparse.jl` needs to be bumped too.
32-
3323
## Updating SuiteSparse
3424

3525
In order to upgrade SparseArrays.jl to use a new release of SuiteSparse, the following steps are necessary:

0 commit comments

Comments
 (0)