Skip to content

Commit

Permalink
fix: jans-linux-setup downgrade jwt for py3.6 (#3621)
Browse files Browse the repository at this point in the history
* fix: jans-linux-setup downgrade jwt for py3.6

* fix: jans-linux-setup missing lib
  • Loading branch information
devrimyatar committed Jan 13, 2023
1 parent 95fadc6 commit 322f752
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jans-linux-setup/jans_setup/app_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"JANS_MAVEN": "https://jenkins.jans.io",
"APPLE_WEBAUTHN": "https://www.apple.com/certificateauthority/Apple_WebAuthn_Root_CA.pem",
"SQLALCHEMY": "https://github.com/sqlalchemy/sqlalchemy/archive/rel_1_3_23.zip",
"PYJWT": "https://github.com/jpadilla/pyjwt/archive/refs/tags/2.6.0.zip",
"PYJWT": "https://github.com/jpadilla/pyjwt/archive/refs/tags/2.4.0.zip",
"PROMPT_TOOLKIT": "https://github.com/prompt-toolkit/python-prompt-toolkit/archive/refs/tags/3.0.33.zip",
"WCWIDTH": "https://github.com/jquast/wcwidth/archive/refs/tags/0.2.5.zip",
"PYGMENTS": "https://github.com/pygments/pygments/archive/refs/tags/2.13.0.zip",
Expand Down
4 changes: 3 additions & 1 deletion jans-linux-setup/jans_setup/jans_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@
import traceback
import code
import site
import warnings

from pathlib import Path

from queue import Queue

warnings.filterwarnings("ignore")

__STATIC_SETUP_DIR__ = '/opt/jans/jans-setup/'
queue = Queue()

Expand Down

0 comments on commit 322f752

Please sign in to comment.