Merge pull request #454 from WordOps/updating-configuration

Hotfix v3.15.1
This commit is contained in:
VirtuBox
2022-09-09 22:57:32 +02:00
committed by GitHub
5 changed files with 13 additions and 6 deletions

View File

@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## Releases
### v3.15.1 - [Unreleased]
### v3.15.2 - [Unreleased]
### v3.15.1 - 2022-09-09
#### Fixed
- Hotfix outdated python distro package cause issues on some servers
### v3.15.0 - 2022-09-09

View File

@@ -9,7 +9,7 @@
# -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo
# -------------------------------------------------------------------------
# Version 3.15.0 - 2022-09-09
# Version 3.15.1 - 2022-09-09
# -------------------------------------------------------------------------
# CONTENTS
@@ -452,6 +452,7 @@ wo_install() {
python3 -m pip uninstall setuptools -y
python3 -m pip install -I setuptools==57.5.0
python3 -m pip install -U pip wheel
python3 -m pip install -U distro
if [ "$wo_linux_distro" = "Debian" ] || [ "$wo_linux_distro" = "Raspbian" ]; then
if [ "$wo_distro_codename" = "stretch" ]; then
python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@1.4.y#egg=python-apt

View File

@@ -5,6 +5,6 @@ psutil>=5.7.3
sh>=1.14.1
SQLAlchemy>=1.3.20
requests>=2.24.0
distro>=1.5.0
distro>=1.7.0
argcomplete>=1.12.0
colorlog>=4.6.2

View File

@@ -27,7 +27,7 @@ if os.geteuid() == 0:
os.makedirs('/var/lib/wo/tmp/')
setup(name='wordops',
version='3.15.0',
version='3.15.1',
description='An essential toolset that eases server administration',
long_description=LONG,
long_description_content_type='text/markdown',
@@ -69,7 +69,7 @@ setup(name='wordops',
'sh >= 1.14.1',
'SQLAlchemy >= 1.3.20',
'requests >= 2.24.0',
'distro >= 1.5.0',
'distro >= 1.7.0',
'argcomplete >= 1.12.0',
'colorlog >= 4.6.2',
],

View File

@@ -15,7 +15,7 @@ class WOVar():
"""Intialization of core variables"""
# WordOps version
wo_version = "3.15.0"
wo_version = "3.15.1"
# WordOps packages versions
wo_wp_cli = "2.6.0"
wo_adminer = "4.8.1"