Skip to content

Commit e8d3886

Browse files
Merge pull request #3 from dataiku/feature/dss11-sc-129978-udpate-doclink-for-julia-to-target-https
Fixed doclink
2 parents d8fcfbe + 1c17c5d commit e8d3886

File tree

4 files changed

+252
-1
lines changed

4 files changed

+252
-1
lines changed

.gitignore

Lines changed: 232 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,232 @@
1+
# DSS specific stuff
2+
dist/
3+
.wlock
4+
.ts
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
.DS_Store
35+
36+
# PyInstaller
37+
# Usually these files are written by a python script from a template
38+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
39+
*.manifest
40+
*.spec
41+
42+
# Installer logs
43+
pip-log.txt
44+
pip-delete-this-directory.txt
45+
46+
# Unit test / coverage reports
47+
htmlcov/
48+
.tox/
49+
.nox/
50+
.coverage
51+
.coverage.*
52+
.cache
53+
nosetests.xml
54+
coverage.xml
55+
unit.xml
56+
*.cover
57+
*.py,cover
58+
.hypothesis/
59+
.pytest_cache/
60+
cover/
61+
62+
# Translations
63+
*.mo
64+
*.pot
65+
66+
# Django stuff:
67+
*.log
68+
local_settings.py
69+
db.sqlite3
70+
db.sqlite3-journal
71+
72+
# Flask stuff:
73+
instance/
74+
.webassets-cache
75+
76+
# Scrapy stuff:
77+
.scrapy
78+
79+
# Sphinx documentation
80+
docs/_build/
81+
82+
# PyBuilder
83+
target/
84+
85+
# Jupyter Notebook
86+
.ipynb_checkpoints
87+
88+
# IPython
89+
profile_default/
90+
ipython_config.py
91+
92+
# pyenv
93+
# For a library or package, you might want to ignore these files since the code is
94+
# intended to run in multiple environments; otherwise, check them in:
95+
.python-version
96+
97+
# pipenv
98+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
99+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
100+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
101+
# install all needed dependencies.
102+
Pipfile.lock
103+
104+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
105+
__pypackages__/
106+
107+
# Celery stuff
108+
celerybeat-schedule
109+
celerybeat.pid
110+
111+
# SageMath parsed files
112+
*.sage.py
113+
114+
# Environments
115+
.env
116+
.venv
117+
env/
118+
venv/
119+
ENV/
120+
env.bak/
121+
venv.bak/
122+
123+
# Spyder project settings
124+
.spyderproject
125+
.spyproject
126+
127+
# Rope project settings
128+
.ropeproject
129+
130+
# mkdocs documentation
131+
/site
132+
133+
# mypy
134+
.mypy_cache/
135+
.dmypy.json
136+
dmypy.json
137+
138+
# Pyre type checker
139+
.pyre/
140+
141+
# pytype static type analyzer
142+
.pytype/
143+
144+
# mac stuff
145+
.DS_Store
146+
147+
# History files
148+
.Rhistory
149+
.Rapp.history
150+
151+
# Session Data files
152+
.RData
153+
154+
# User-specific files
155+
.Ruserdata
156+
157+
# Example code in package build process
158+
*-Ex.R
159+
160+
# Output files from R CMD build
161+
/*.tar.gz
162+
163+
# Output files from R CMD check
164+
/*.Rcheck/
165+
166+
# RStudio files
167+
.Rproj.user/
168+
169+
# produced vignettes
170+
vignettes/*.html
171+
vignettes/*.pdf
172+
173+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
174+
.httr-oauth
175+
176+
# knitr and R markdown default cache directories
177+
*_cache/
178+
/cache/
179+
180+
# Temporary files created by R markdown
181+
*.utf8.md
182+
*.knit.md
183+
184+
# R Environment Variables
185+
.Renviron
186+
187+
# pkgdown site
188+
docs/
189+
190+
# translation temp files
191+
po/*~
192+
193+
# Compiled class file
194+
*.class
195+
196+
# Log file
197+
*.log
198+
199+
# BlueJ files
200+
*.ctxt
201+
202+
# Mobile Tools for Java (J2ME)
203+
.mtj.tmp/
204+
205+
# Package Files #
206+
*.jar
207+
*.war
208+
*.nar
209+
*.ear
210+
*.zip
211+
*.tar.gz
212+
*.rar
213+
214+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
215+
hs_err_pid*
216+
217+
.gradle
218+
**/build/
219+
!src/**/build/
220+
221+
# Ignore Gradle GUI config
222+
gradle-app.setting
223+
224+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
225+
!gradle-wrapper.jar
226+
227+
# Cache of project
228+
.gradletasknamecache
229+
230+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
231+
# gradle/wrapper/gradle-wrapper.properties
232+
.vscode/settings.json

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Changelog
2+
3+
## Version 1.0.1 - Bugfix release - 2023-03-31
4+
- Fixed doclink

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Makefile variables set automatically
2+
plugin_id=`cat plugin.json | python -c "import sys, json; print(str(json.load(sys.stdin)['id']).replace('/',''))"`
3+
plugin_version=`cat plugin.json | python -c "import sys, json; print(str(json.load(sys.stdin)['version']).replace('/',''))"`
4+
archive_file_name="dss-plugin-${plugin_id}-${plugin_version}.zip"
5+
6+
plugin:
7+
@echo "[START] Archiving plugin to dist/ folder..."
8+
@cat plugin.json | json_pp > /dev/null
9+
@rm -rf dist
10+
@mkdir dist
11+
@zip dist/${archive_file_name} plugin.json
12+
@echo "[SUCCESS] Archiving plugin to dist/ folder: Done!"
13+
14+
dist-clean:
15+
rm -rf dist

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "julia",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"meta": {
55
"label": "Julia",
66
"description": "Adds Julia language support with Julia recipes and notebooks",

0 commit comments

Comments
 (0)