File tree 7 files changed +19
-9
lines changed
7 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,14 @@ name: Deploy
3
3
on :
4
4
release :
5
5
types : [created]
6
+
6
7
7
8
jobs :
8
9
deploy :
9
10
runs-on : ubuntu-latest
10
11
strategy :
11
12
matrix :
12
- python-version : [3.8 ]
13
+ python-version : [3.9 ]
13
14
14
15
steps :
15
16
- name : Check out repository
Original file line number Diff line number Diff line change 34
34
brew install r
35
35
else
36
36
# Linux
37
- sudo apt-key adv \
38
- --keyserver keyserver.ubuntu.com \
39
- --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
40
- sudo add-apt-repository \
41
- ' deb https://cloud.r-project.org/bin/linux/ubuntu focal-cran40/'
37
+ wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo gpg --dearmor -o /usr/share/keyrings/r-project.gpg
38
+ echo " deb [signed-by=/usr/share/keyrings/r-project.gpg] https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/" | sudo tee -a /etc/apt/sources.list.d/r-project.list
42
39
sudo apt-get update
43
40
sudo apt-get install r-base
44
41
fi
Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ Release Notes
7
7
0.12 Series
8
8
...........
9
9
10
+ 0.12.13 (2023-11-08)
11
+ --------------------
12
+
13
+ Fixes (#615):
14
+
15
+ * Fix for wrong assets path in abc-server-dash
16
+
17
+ General
18
+
19
+ * Added new maintainers to RTD's about section
20
+
10
21
11
22
0.12.12 (2023-08-18)
12
23
--------------------
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ recursive-include pyabc/visserver/static *
3
3
recursive-include pyabc/visserver/templates *
4
4
include pyabc/storage/alembic.ini
5
5
recursive-include pyabc/storage/migrations *
6
+ recursive-include pyabc/visserver/assets *
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Authors
14
14
15
15
The first main developer of the package was Emmanuel Klinger, with major contributions from Dennis Rickert and Nick Jagiella.
16
16
Currently, the main developer and maintainer is Yannik Schaelte.
17
+ Additional maintainers are Jonas Arruda and Stephan Grein.
17
18
Emad Alamoudi is co-developer with various contributions.
18
19
Elba Raimúndez-Álvarez contributed to the examples.
19
20
Felipe Reck contributed to the "look-ahead" Redis-based sampler and example notebook.
Original file line number Diff line number Diff line change 1
- __version__ = '0.12.12 '
1
+ __version__ = '0.12.13 '
Original file line number Diff line number Diff line change 23
23
matplotlib .use ('Agg' )
24
24
25
25
static = str (pathlib .Path (__file__ ).parent .absolute ()) + '/assets/'
26
- static_logo = Path (str (pathlib .Path (__file__ ).parent .absolute ())).parent .parent
27
26
DOWNLOAD_DIR = tempfile .mkdtemp () + '/'
28
27
db_path = DOWNLOAD_DIR
29
28
parameter = ""
30
29
square_png = static + 'square_v2.png'
31
30
square_base64 = base64 .b64encode (open (square_png , 'rb' ).read ()).decode ('ascii' )
32
- pyABC_png = str (static_logo ) + '/doc/logo/logo .png'
31
+ pyABC_png = str (static ) + '/pyABC_logo .png'
33
32
pyABC_base64 = base64 .b64encode (open (pyABC_png , 'rb' ).read ()).decode ('ascii' )
34
33
para_list = []
35
34
colors = {
You can’t perform that action at this time.
0 commit comments