File tree Expand file tree Collapse file tree 7 files changed +19
-9
lines changed Expand file tree Collapse file tree 7 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,14 @@ name: Deploy
33on :
44 release :
55 types : [created]
6+
67
78jobs :
89 deploy :
910 runs-on : ubuntu-latest
1011 strategy :
1112 matrix :
12- python-version : [3.8 ]
13+ python-version : [3.9 ]
1314
1415 steps :
1516 - name : Check out repository
Original file line number Diff line number Diff line change 3434 brew install r
3535 else
3636 # 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
4239 sudo apt-get update
4340 sudo apt-get install r-base
4441 fi
Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ Release Notes
770.12 Series
88...........
99
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+
1021
11220.12.12 (2023-08-18)
1223--------------------
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ recursive-include pyabc/visserver/static *
33recursive-include pyabc/visserver/templates *
44include pyabc/storage/alembic.ini
55recursive-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
1414
1515The first main developer of the package was Emmanuel Klinger, with major contributions from Dennis Rickert and Nick Jagiella.
1616Currently, the main developer and maintainer is Yannik Schaelte.
17+ Additional maintainers are Jonas Arruda and Stephan Grein.
1718Emad Alamoudi is co-developer with various contributions.
1819Elba Raimúndez-Álvarez contributed to the examples.
1920Felipe 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 2323matplotlib .use ('Agg' )
2424
2525static = str (pathlib .Path (__file__ ).parent .absolute ()) + '/assets/'
26- static_logo = Path (str (pathlib .Path (__file__ ).parent .absolute ())).parent .parent
2726DOWNLOAD_DIR = tempfile .mkdtemp () + '/'
2827db_path = DOWNLOAD_DIR
2928parameter = ""
3029square_png = static + 'square_v2.png'
3130square_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'
3332pyABC_base64 = base64 .b64encode (open (pyABC_png , 'rb' ).read ()).decode ('ascii' )
3433para_list = []
3534colors = {
You can’t perform that action at this time.
0 commit comments