Skip to content

Commit

Permalink
try latest fix for mkdocs-material insiders
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Oct 8, 2022
1 parent d4dc57c commit 99cadeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/install_mkdocs_material_insiders.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import sys

TOKEN = os.environ.get('GH_TOKEN_MKDOCS_MATERIAL_INSIDERS', '')
REFERENCE = f'git+https://{TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git'
TAG = '8.5.6-insiders-4.25.2'
DEP_REF = f'git+https://{TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git'
GIT_REF = '2203a968f9992578460add59056b480ea454ddb3'


def main():
Expand All @@ -16,7 +16,7 @@ def main():
python = shutil.which('python')
try:
process = subprocess.Popen(
[python, '-m', 'pip', 'install', '--disable-pip-version-check', f'mkdocs-material @ {REFERENCE}@{TAG}'],
[python, '-m', 'pip', 'install', '--disable-pip-version-check', f'mkdocs-material @ {DEP_REF}@{GIT_REF}'],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
encoding='utf-8',
Expand Down

0 comments on commit 99cadeb

Please sign in to comment.