Skip to content

Commit

Permalink
Release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
peci1 committed Nov 13, 2023
1 parent a68b894 commit 68aa49a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,17 @@ on:

jobs:
build-n-publish:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- uses: actions/checkout@v4
- name: Install wheel
run: python3 -m pip install wheel
- name: Build a binary wheel and a source tarball
run: python3 setup.py sdist bdist_wheel
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true
verbose: true
verbose: true
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.6

- Fixed coloring output. Thanks @tomix1024 !

## 1.0.5

- Maintenance release.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
long_description = (here / 'README.md').read_text(encoding='utf-8')

setup(name='nvidia-htop',
version='1.0.5',
version='1.0.6',
description='A tool for enriching the output of nvidia-smi',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 68aa49a

Please sign in to comment.