Skip to content

Commit

Permalink
FAQ on locale issue with R (#105)
Browse files Browse the repository at this point in the history
Also, update of Python version.
  • Loading branch information
holtgrewe committed Aug 30, 2023
1 parent 1609a95 commit 737ac05
Show file tree
Hide file tree
Showing 6 changed files with 686 additions and 187 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/mkdocs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,25 @@ name: "mkdocs: deploy to gh-pages"
on:
push:
branches:
- master
- main

jobs:
deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v1
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.6'
architecture: 'x64'
python-version: '3.10'
cache: "pipenv"
cache-dependency-path: |
Pipfile.lock
- name: Install dependencies
run: |
python3 -m pip install pipenv
pipenv --python python3.6
python -m pip install --upgrade pipenv wheel
pipenv install
- run: cd bih-cluster && pipenv run mkdocs build
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/mkdocs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,21 @@ on:

jobs:
check:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v1
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.6'
architecture: 'x64'
python-version: '3.10'
cache: "pipenv"
cache-dependency-path: |
Pipfile.lock
- name: Install dependencies
run: |
python3 -m pip install pipenv
pipenv --python python3.6
python -m pip install --upgrade pipenv wheel
pipenv install
- run: cd bih-cluster && pipenv run mkdocs build
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ pymdown-extensions = "*"
mkdocs-git-revision-date-localized-plugin = "*"

[requires]
python_version = "3.6"
python_version = "3.10"
Loading

0 comments on commit 737ac05

Please sign in to comment.