Commit 5a45b31d authored by Pedro Oliveira's avatar Pedro Oliveira

update version

update github workflow
parent a4f297ea
...@@ -17,6 +17,7 @@ jobs: ...@@ -17,6 +17,7 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install setuptools wheel twine pip install setuptools wheel twine
sudo apt install libpcap-dev
- name: Build and publish - name: Build and publish
env: env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
......
...@@ -15,7 +15,7 @@ from pimdm import Main ...@@ -15,7 +15,7 @@ from pimdm import Main
from pimdm.tree import pim_globals from pimdm.tree import pim_globals
from pimdm.daemon.Daemon import Daemon from pimdm.daemon.Daemon import Daemon
VERSION = "1.3.5" VERSION = "1.4.0"
def client_socket(data_to_send, print_output=True): def client_socket(data_to_send, print_output=True):
......
...@@ -2,5 +2,5 @@ PrettyTable ...@@ -2,5 +2,5 @@ PrettyTable
netifaces netifaces
ipaddress ipaddress
pyroute2 pyroute2
py-mld==1.0.2 py-mld==1.0.3
igmp==1.0.2 igmp==1.0.4
...@@ -12,7 +12,7 @@ setup( ...@@ -12,7 +12,7 @@ setup(
long_description=open("README.md", "r").read(), long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
keywords="PIM-DM Multicast Routing Protocol PIM Dense-Mode Router RFC3973 IPv4 IPv6", 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", url="http://github.com/pedrofran12/pim_dm",
author="Pedro Oliveira", author="Pedro Oliveira",
author_email="pedro.francisco.oliveira@tecnico.ulisboa.pt", author_email="pedro.francisco.oliveira@tecnico.ulisboa.pt",
...@@ -22,8 +22,8 @@ setup( ...@@ -22,8 +22,8 @@ setup(
'netifaces', 'netifaces',
'ipaddress', 'ipaddress',
'pyroute2', 'pyroute2',
'py-mld==1.0.2', 'py-mld==1.0.3',
'igmp==1.0.2', 'igmp==1.0.4',
], ],
packages=find_packages(exclude=["docs"]), packages=find_packages(exclude=["docs"]),
ext_modules = [Extension( ext_modules = [Extension(
...@@ -56,6 +56,7 @@ setup( ...@@ -56,6 +56,7 @@ setup(
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
], ],
python_requires=">=3.3", python_requires=">=3.3",
) )
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment