Skip to content

Commit

Permalink
Merge branch 'release/1.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Mar 16, 2023
2 parents 1d59a12 + e8cadb6 commit 7d6a78d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,10 @@ jobs:
name: Publish to TestPyPI
environment: staging
runs-on: ubuntu-latest
needs:
- is-duplicate
- test-code
needs: [test-code]
if: |
needs.is-duplicate.outputs.should_skip != 'true' &&
github.ref == 'refs/heads/main' &&
github.event_name == 'push'
!failure() &&
startsWith(github.ref, 'refs/tags/')
steps:
- name: Check out code
Expand Down Expand Up @@ -90,13 +87,10 @@ jobs:
name: Publish to PyPI
environment: production
runs-on: ubuntu-latest
needs:
- is-duplicate
- publish-to-test-pypi
needs: [publish-to-test-pypi]
if: |
needs.is-duplicate.outputs.should_skip != 'true' &&
github.ref == 'refs/heads/main' &&
github.event_name == 'push'
!failure() &&
startsWith(github.ref, 'refs/tags/')
steps:
- name: Check out code
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = python4yahdlc
version = 1.3.0
version = 1.3.1
description = Python binding of the yahdlc library allowing to encode and decode HDLC frames.
long_description = file: README.rst
keywords = hdlc, yahdlc, binding, network
Expand Down

0 comments on commit 7d6a78d

Please sign in to comment.