Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
update github workflow
  • Loading branch information
pedrofran12 committed Apr 10, 2022
1 parent a4f297e commit 4070f07
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
sudo apt install libpcap-dev
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py build_ext --inplace
python setup.py sdist bdist_wheel
twine upload dist/*
2 changes: 1 addition & 1 deletion pimdm/Run.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from pimdm.tree import pim_globals
from pimdm.daemon.Daemon import Daemon

VERSION = "1.3.5"
VERSION = "1.4.0"


def client_socket(data_to_send, print_output=True):
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ PrettyTable
netifaces
ipaddress
pyroute2
py-mld==1.0.2
igmp==1.0.2
py-mld==1.0.3
igmp==1.0.4
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
keywords="PIM-DM Multicast Routing Protocol PIM Dense-Mode Router RFC3973 IPv4 IPv6",
version="1.3.5",
version="1.4.0",
url="http://github.com/pedrofran12/pim_dm",
author="Pedro Oliveira",
author_email="[email protected]",
Expand All @@ -22,8 +22,8 @@
'netifaces',
'ipaddress',
'pyroute2',
'py-mld==1.0.2',
'igmp==1.0.2',
'py-mld==1.0.3',
'igmp==1.0.4',
],
packages=find_packages(exclude=["docs"]),
ext_modules = [Extension(
Expand Down Expand Up @@ -56,6 +56,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.3",
)

0 comments on commit 4070f07

Please sign in to comment.