Skip to content

Commit

Permalink
Removed parso from extra deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
g6123 committed Mar 14, 2021
1 parent 21ac512 commit 0ebe8be
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 22 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
name: Build documentation

name: Deploy documentation to GitHub pages
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]

branches: [main]
jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -20,7 +16,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs -e '.[parso]'
pip install mkdocs -e .
- name: Build and deploy
run: |
mkdocs gh-deploy --force
9 changes: 1 addition & 8 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Upload Python Package

name: Publish Python package to PyPI
on:
release:
types: [created]

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Install package from PyPI,

```
pip install mkdocs-yaarg-plugin[parso]
pip install mkdocs-yaarg-plugin
```

then add it to `mkdocs.yml`:
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Install package from PyPI,

```text
pip install mkdocs-yaarg-plugin[parso]
pip install mkdocs-yaarg-plugin
```

then add it to `mkdocs.yml`:
Expand Down
2 changes: 2 additions & 0 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
mkdocs>=1,<2
schema>=0.7,<0.8
pyyaml>=5.4,<5.5
parso>=0.8,<0.9
docstring-parser>=0.7,<0.8
2 changes: 0 additions & 2 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@ black==20.8b1
isort==5.7.0
mypy==0.812
pytest==6.2.2
wine==3.3.0
build==0.3.0
bump2version==1.0.1
2 changes: 0 additions & 2 deletions requirements/extra.txt
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
parso>=0.8,<0.9 # extra=parso
docstring-parser>=0.7,<0.8 # extra=parso

0 comments on commit 0ebe8be

Please sign in to comment.