Skip to content

Commit

Permalink
Merge branch 'release/v0.19.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
lucc committed Nov 26, 2023
2 parents 8d84153 + a3f0a72 commit 136e79c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
11 changes: 11 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: doc/source/conf.py

python:
install:
# Run setup.py first to generate the version.py file. For some reason it
Expand Down
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

v0.19.1: 2023-11-26

- Fix documentation builds on https://khard.readthedocs.io/


v0.19.0: 2023-11-23

- Remove support for python 3.7
Expand Down
9 changes: 5 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@
shellHook = ''
cat <<EOF
To publish a tag on pypi
0. version=$(git tag --list --sort=version:refname v\* | tail -n 1)
0. version=$(git tag --list --sort=version:refname v\* | sed -n '$s/^v//p')
1. git checkout v\$version
2. python3 -m build --sdist --wheel
3. twine upload -r khardtest dist/khard-\$version*
4. twine upload -r khard dist/khard-\$version*
2. python3 -m build
3. twine check --strict dist/khard-\$version*
4. twine upload -r khardtest dist/khard-\$version*
5. twine upload -r khard dist/khard-\$version*
EOF
'';
};
Expand Down

0 comments on commit 136e79c

Please sign in to comment.