Skip to content

Commit

Permalink
Disable doc deployment update changelog and version (#189)
Browse files Browse the repository at this point in the history
* Disable doc deployment update changelog and version

* Fix spelling
  • Loading branch information
facelessuser authored Apr 23, 2020
1 parent 6d1e700 commit f9c96ec
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 27 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,32 @@ on:

jobs:

documents:
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
# documents:
# strategy:
# max-parallel: 4
# matrix:
# python-version: [3.7]

runs-on: ubuntu-latest
# runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -r requirements/docs.txt
- name: Deploy documents
run: |
git config user.name ${{ secrets.GH_USER }}
git config user.email "${{ secrets.GH_EMAIL }}"
git remote add gh-token "https://${{ secrets.GH_TOKEN }}@github.com/facelessuser/soupsieve.git"
git fetch gh-token && git fetch gh-token gh-pages:gh-pages
python -m mkdocs gh-deploy -v --clean --remote-name gh-token
git push gh-token gh-pages
# steps:
# - uses: actions/checkout@v1
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v1
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip setuptools
# python -m pip install -r requirements/docs.txt
# - name: Deploy documents
# run: |
# git config user.name ${{ secrets.GH_USER }}
# git config user.email "${{ secrets.GH_EMAIL }}"
# git remote add gh-token "https://${{ secrets.GH_TOKEN }}@github.com/facelessuser/soupsieve.git"
# git fetch gh-token && git fetch gh-token gh-pages:gh-pages
# python -m mkdocs gh-deploy -v --clean --remote-name gh-token
# git push gh-token gh-pages

wheel:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .pyspelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ matrix:
- alt
ignores:
- ':is(code, pre, a.magiclink, span.keys)'
- ':is(.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon)'
- ':is(.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon, .md-footer-social__link)'
- pyspelling.filters.url:

- name: markdown
Expand Down
2 changes: 2 additions & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 1.9.6

!!! note "Last version for Python 2.7"

- **FIX**: Prune dead code.
- **FIX**: Corner case with splitting namespace and tag name that that have an escaped `|`.

Expand Down
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mkdocs-material>=2.2.5
mkdocs-material<5.0.0
pyspelling
2 changes: 1 addition & 1 deletion soupsieve/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,5 +186,5 @@ def parse_version(ver, pre=False):
return Version(major, minor, micro, release, pre, post, dev)


__version_info__ = Version(1, 9, 6, ".dev")
__version_info__ = Version(1, 9, 6, "final")
__version__ = __version_info__._get_canonical()

0 comments on commit f9c96ec

Please sign in to comment.