Skip to content

Commit

Permalink
Fixes before release
Browse files Browse the repository at this point in the history
Fix typo in ``docs/notes.md``
Fix ``.github/workflows/on-push.yml``
  • Loading branch information
posita committed Aug 3, 2023
1 parent 7a728a8 commit b6dd517
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/on-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: test ${{ matrix.python-version }} with Tox
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade 'pip>=23,!=23.1.2,!=23.2'
python -m pip install 'tox-gh-actions~=2.12.0'
git submodule update --init --recursive
tox --verbose
Expand All @@ -45,9 +45,12 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: ">=3.10"
- name: build and check dist and docs
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade 'pip>=23,!=23.1.2,!=23.2'
python -m pip install tox 'versioningit~=2.0'
. ./helpers/ci-vars.sh # defines PKG, TAG, VERS, etc.
if [ ${{ github.ref_name }} = "${TAG}" ] ; then
Expand Down
2 changes: 1 addition & 1 deletion docs/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

## [0.4.4](https://github.com/posita/numerary/releases/tag/v0.4.4)

* Fixes guerrilla patching of ``#!python RationalLikeMethods.__doc__`` to work with ``python -OO`.
* Fixes guerrilla patching of ``#!python RationalLikeMethods.__doc__`` to work with ``python -OO``.

## [0.4.3](https://github.com/posita/numerary/releases/tag/v0.4.3)

Expand Down

0 comments on commit b6dd517

Please sign in to comment.