Skip to content

Commit

Permalink
Merge branch 'release/1.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Mar 18, 2023
2 parents 6fa7414 + ac814a3 commit aef5354
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,33 @@ jobs:
- name: Test with Tox
run: tox

test-dist:
name: Test distribution
runs-on: ubuntu-latest
needs: is-duplicate
if: ${{ needs.is-duplicate.outputs.should_skip != 'true' }}

steps:
- name: Check out code
uses: actions/checkout@v3
with:
submodules: recursive

- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade build twine
- name: Build and test with Twine
run: |
python -m build
twine check dist/*
publish-to-test-pypi:
name: Publish to TestPyPI
environment: staging
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Installation
============

From PyPI (recommended)
----------------------
-----------------------

.. code:: sh
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[metadata]
name = python4yahdlc
version = 1.3.2
version = 1.3.3
description = Python binding of the yahdlc library allowing to encode and decode HDLC frames.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = hdlc, yahdlc, binding, network
license = GPLv3
license_files = LICENSE.txt
Expand Down

0 comments on commit aef5354

Please sign in to comment.