Skip to content

Commit bf9221a

Browse files
authored
support Gaston v2 (#5632)
1 parent 2388464 commit bf9221a

File tree

6 files changed

+99
-106
lines changed

6 files changed

+99
-106
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161
if: startsWith(matrix.os, 'ubuntu')
6262
run: |
6363
sudo apt-get -y update
64-
sudo apt-get -y install g++ gnuplot poppler-utils texlive-{latex-base,latex-extra,luatex} # LaTeX
64+
sudo apt-get -y install g++ poppler-utils texlive-{latex-base,latex-extra,luatex} # LaTeX
65+
sudo apt-get -y install gnuplot libxcb-cursor0 # Gaston
6566
sudo fc-cache -vr
6667
echo "LD_PRELOAD=$(g++ --print-file-name=libstdc++.so)" >>$GITHUB_ENV
68+
echo "JULIA_GNUPLOT_EXE=gnuplot" >>$GITHUB_ENV
6769
6870
- uses: julia-actions/setup-julia@latest
6971
with:

PlotsBase/Project.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "PlotsBase"
22
uuid = "c52230a3-c5da-43a3-9e85-260fcdfdc737"
3-
version = "0.1"
3+
version = "0.1.0"
44

55
[deps]
66
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
@@ -12,8 +12,8 @@ FFMPEG = "c87230d0-a227-11e9-1b43-d7ebe4e7570a"
1212
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
1313
JLFzf = "1019f520-868f-41f5-a6de-eb00f4b6a39c"
1414
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
15-
Latexify = "23fbe1c1-3f47-55db-b15f-69d7ec21a316"
1615
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
16+
Latexify = "23fbe1c1-3f47-55db-b15f-69d7ec21a316"
1717
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1818
Measures = "442fdcdd-2543-5da2-b0f3-8c86c306513e"
1919
NaNMath = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
@@ -38,11 +38,6 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
3838
UnicodeFun = "1cfade01-22cf-5700-b092-accc4b62d6e1"
3939
Unzip = "41fe7b60-77ed-43a1-b4f0-825fd5a5650d"
4040

41-
[sources]
42-
PlotThemes = {path = "../PlotThemes"}
43-
RecipesBase = {path = "../RecipesBase"}
44-
RecipesPipeline = {path = "../RecipesPipeline"}
45-
4641
[weakdeps]
4742
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
4843
GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71"
@@ -58,6 +53,11 @@ PythonPlot = "274fc56d-3b97-40fa-a1cd-1b4a50311bf9"
5853
UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228"
5954
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
6055

56+
[sources]
57+
PlotThemes = {path = "../PlotThemes"}
58+
RecipesBase = {path = "../RecipesBase"}
59+
RecipesPipeline = {path = "../RecipesPipeline"}
60+
6161
[extensions]
6262
FileIOExt = "FileIO"
6363
GRExt = "GR"
@@ -82,7 +82,7 @@ Downloads = "1"
8282
FFMPEG = "0.4"
8383
FixedPointNumbers = "0.8"
8484
GR = "0.73"
85-
Gaston = "1"
85+
Gaston = "2"
8686
HDF5 = "0.17"
8787
JLFzf = "0.1"
8888
JSON = "0.21, 1"
@@ -100,8 +100,8 @@ PrecompileTools = "1"
100100
Preferences = "1"
101101
Printf = "1"
102102
PythonPlot = "1"
103-
Random = "1"
104103
REPL = "1"
104+
Random = "1"
105105
RecipesBase = "1.3.1"
106106
RecipesPipeline = "1"
107107
Reexport = "1"
@@ -111,9 +111,9 @@ SparseArrays = "1"
111111
Statistics = "1"
112112
StatsBase = "0.34"
113113
TableOperations = "1"
114+
UUIDs = "1"
114115
UnicodeFun = "0.4"
115116
UnicodePlots = "3"
116117
Unitful = "1.25"
117118
Unzip = "0.2"
118-
UUIDs = "1"
119119
julia = "1.10"

0 commit comments

Comments
 (0)