Skip to content

Commit

Permalink
head 50 and spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Feb 24, 2024
1 parent 2c4cd00 commit 4955c16
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ jobs:
sed -i -e "s/version = \"[^\"]*\"/version = \"${version}\"/" $(find . -name "*.py")
echo "version comment"
sed -i -e "s/# Version .*/# Version ${version}/" $(find . -name "*.py")
echo "--------------- cat rfswarm.py ---------------"
cat rfswarm_manager/rfswarm.py
echo "--------------- head rfswarm_agent.py ---------------"
head -50 rfswarm_agent/rfswarm_agent.py
echo "--------------- cat setup-manager.py ---------------"
cat setup-manager.py
Expand Down
2 changes: 1 addition & 1 deletion rfswarm_agent/rfswarm_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

class RFSwarmAgent():

version = "1.2.1"
version = "v1.2.1"
config = None
isconnected = False
isrunning = False
Expand Down
2 changes: 1 addition & 1 deletion rfswarm_manager/rfswarm.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def log_request(self, code='-', size='-'):


class RFSwarmBase:
version = "1.2.1"
version = "v1.2.1"
debuglvl = 0

config = None
Expand Down
2 changes: 1 addition & 1 deletion rfswarm_reporter/rfswarm_reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def finalize(self):


class ReporterBase():
version = "1.2.1"
version = "v1.2.1"
debuglvl = 0

save_ini = True
Expand Down
28 changes: 14 additions & 14 deletions setup-agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@
long_description = fh.read()

setuptools.setup(
name="rfswarm-agent",
version="1.2.1",
author="damies13",
author_email="[email protected]",
description="rfswarm Agent",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/damies13/rfswarm",
packages=setuptools.find_packages(exclude=["*fswarm_report*", "*rfswarm_manager*", "build/*"]),
install_requires=['configparser', 'requests', 'robotframework', 'psutil'],
classifiers=[
name = "rfswarm-agent",
version = "v1.2.1",
author = "damies13",
author_email = "[email protected]",
description = "rfswarm Agent",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/damies13/rfswarm",
packages = setuptools.find_packages(exclude=["*fswarm_report*", "*rfswarm_manager*", "build/*"]),
install_requires = ['configparser', 'requests', 'robotframework', 'psutil'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
project_urls={
python_requires = '>=3.6',
project_urls = {
'Getting Help': 'https://github.com/damies13/rfswarm#getting-help',
'Say Thanks!': 'https://github.com/damies13/rfswarm#donations',
'Source': 'https://github.com/damies13/rfswarm',
},
entry_points={'console_scripts': ['rfswarm-agent = rfswarm_agent.rfswarm_agent:RFSwarm']},
entry_points = {'console_scripts': ['rfswarm-agent = rfswarm_agent.rfswarm_agent:RFSwarm']},
)
28 changes: 14 additions & 14 deletions setup-manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@
long_description = fh.read()

setuptools.setup(
name="rfswarm-manager",
version="1.2.1",
author="damies13",
author_email="[email protected]",
description="rfswarm manager",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/damies13/rfswarm",
packages=setuptools.find_packages(exclude=["*fswarm_report*", "*fswarm_agen*", "build/*"]),
name = "rfswarm-manager",
version = "1.2.1",
author = "damies13",
author_email = "[email protected]",
description = "rfswarm manager",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/damies13/rfswarm",
packages = setuptools.find_packages(exclude=["*fswarm_report*", "*fswarm_agen*", "build/*"]),
# I needed a recent version of pip (pip 21.0.1 worked my previous <20 version didn't) for matplotlib
# to actually install withput error
# https://matplotlib.org/stable/users/installing.html
install_requires=['configparser', 'HTTPServer', 'pillow>=9.1.0', 'psutil', 'pip>=21,>=22', 'matplotlib', 'requests'],
classifiers=[
install_requires = ['configparser', 'HTTPServer', 'pillow>=9.1.0', 'psutil', 'pip>=21,>=22', 'matplotlib', 'requests'],
classifiers = "[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
project_urls={
python_requires = "'>=3.7',
project_urls = "{
'Getting Help': 'https://github.com/damies13/rfswarm#getting-help',
'Say Thanks!': 'https://github.com/damies13/rfswarm#donations',
'Source': 'https://github.com/damies13/rfswarm',
},
entry_points={'console_scripts': ['rfswarm = rfswarm_manager.rfswarm:RFSwarm', 'rfswarm-manager = rfswarm_manager.rfswarm:RFSwarm']},
entry_points = "{'console_scripts': ['rfswarm = rfswarm_manager.rfswarm:RFSwarm', 'rfswarm-manager = rfswarm_manager.rfswarm:RFSwarm']},
)
28 changes: 14 additions & 14 deletions setup-reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@
long_description = fh.read()

setuptools.setup(
name="rfswarm-reporter",
version="1.2.1",
author="damies13",
author_email="[email protected]",
description="rfswarm reporter",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/damies13/rfswarm",
packages=setuptools.find_packages(exclude=["*fswarm_manag*", "*fswarm_agen*", "build/*"]),
name = "rfswarm-reporter",
version = "1.2.1",
author = "damies13",
author_email = "[email protected]",
description = "rfswarm reporter",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/damies13/rfswarm",
packages = setuptools.find_packages(exclude=["*fswarm_manag*", "*fswarm_agen*", "build/*"]),
# I needed a recent version of pip (pip 21.0.1 worked my previous <20 version didn't) for matplotlib
# to actually install withput error
# https://matplotlib.org/stable/users/installing.html
# zoneinfo requires python 3.9
# tzlocal is needed to get the local timezone in a format that zoneinfo likes
install_requires=['configparser', 'pillow>=9.1.0', 'pip>=21,>=22', 'matplotlib', 'python-docx', 'openpyxl', 'tzlocal>=4.1'],
classifiers=[
install_requires = ['configparser', 'pillow>=9.1.0', 'pip>=21,>=22', 'matplotlib', 'python-docx', 'openpyxl', 'tzlocal>=4.1'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
project_urls={
python_requires = '>=3.9',
project_urls = {
'Getting Help': 'https://github.com/damies13/rfswarm#getting-help',
'Say Thanks!': 'https://github.com/damies13/rfswarm#donations',
'Source': 'https://github.com/damies13/rfswarm',
},
entry_points={'console_scripts': ['rfswarm-reporter = rfswarm_reporter.rfswarm_reporter:RFSwarm']},
entry_points = {'console_scripts': ['rfswarm-reporter = rfswarm_reporter.rfswarm_reporter:RFSwarm']},
)

0 comments on commit 4955c16

Please sign in to comment.