diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 72279b63..781e40d7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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: diff --git a/.pyspelling.yml b/.pyspelling.yml index 4cf66ecf..9bd07525 100644 --- a/.pyspelling.yml +++ b/.pyspelling.yml @@ -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 diff --git a/docs/src/markdown/about/changelog.md b/docs/src/markdown/about/changelog.md index 3872aaba..c7113db9 100644 --- a/docs/src/markdown/about/changelog.md +++ b/docs/src/markdown/about/changelog.md @@ -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 `|`. diff --git a/requirements/docs.txt b/requirements/docs.txt index 1aff30b9..5e20f454 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,2 +1,2 @@ -mkdocs-material>=2.2.5 +mkdocs-material<5.0.0 pyspelling diff --git a/soupsieve/__meta__.py b/soupsieve/__meta__.py index af70d1bb..344d72de 100644 --- a/soupsieve/__meta__.py +++ b/soupsieve/__meta__.py @@ -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()