Skip to content

Commit 5a45b31

Browse files
committed
update version
update github workflow
1 parent a4f297e commit 5a45b31

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
run: |
1818
python -m pip install --upgrade pip
1919
pip install setuptools wheel twine
20+
sudo apt install libpcap-dev
2021
- name: Build and publish
2122
env:
2223
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

pimdm/Run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from pimdm.tree import pim_globals
1616
from pimdm.daemon.Daemon import Daemon
1717

18-
VERSION = "1.3.5"
18+
VERSION = "1.4.0"
1919

2020

2121
def client_socket(data_to_send, print_output=True):

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ PrettyTable
22
netifaces
33
ipaddress
44
pyroute2
5-
py-mld==1.0.2
6-
igmp==1.0.2
5+
py-mld==1.0.3
6+
igmp==1.0.4

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
long_description=open("README.md", "r").read(),
1313
long_description_content_type="text/markdown",
1414
keywords="PIM-DM Multicast Routing Protocol PIM Dense-Mode Router RFC3973 IPv4 IPv6",
15-
version="1.3.5",
15+
version="1.4.0",
1616
url="http://github.com/pedrofran12/pim_dm",
1717
author="Pedro Oliveira",
1818
author_email="pedro.francisco.oliveira@tecnico.ulisboa.pt",
@@ -22,8 +22,8 @@
2222
'netifaces',
2323
'ipaddress',
2424
'pyroute2',
25-
'py-mld==1.0.2',
26-
'igmp==1.0.2',
25+
'py-mld==1.0.3',
26+
'igmp==1.0.4',
2727
],
2828
packages=find_packages(exclude=["docs"]),
2929
ext_modules = [Extension(
@@ -56,6 +56,7 @@
5656
"Programming Language :: Python :: 3.7",
5757
"Programming Language :: Python :: 3.8",
5858
"Programming Language :: Python :: 3.9",
59+
"Programming Language :: Python :: 3.10",
5960
],
6061
python_requires=">=3.3",
6162
)

0 commit comments

Comments
 (0)