Merge pull request #499 from WordOps/updating-configuration

Hotfix SQLAlchemy version locked
This commit is contained in:
VirtuBox
2023-01-29 14:49:34 +01:00
committed by GitHub
5 changed files with 13 additions and 5 deletions

View File

@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### v3.17.0 - [Unreleased]
### v3.16.3 - 2023-01-29
#### Fixed
- SQLAlchemy version locked
### v3.16.2 - 2023-01-21
#### Changed

View File

@@ -9,7 +9,7 @@
# -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo
# -------------------------------------------------------------------------
# Version 3.16.2 - 2023-01-21
# Version 3.16.3 - 2023-01-29
# -------------------------------------------------------------------------
# CONTENTS
@@ -446,6 +446,7 @@ wo_install() {
python3 -m pip install -I setuptools==57.5.0
python3 -m pip install -U pip wheel
python3 -m pip uninstall psutil -y
python3 -m pip uninstall SQLAlchemy -y
else
rm -rf /opt/wo
python3 -m venv /opt/wo
@@ -511,6 +512,7 @@ wo_travis_install() {
python3 -m pip install -I setuptools==57.5.0
python3 -m pip install -U pip wheel
python3 -m pip uninstall psutil -y
python3 -m pip uninstall SQLAlchemy -y
else
rm -rf /opt/wo
python3 -m venv /opt/wo

View File

@@ -3,7 +3,7 @@ pynginxconfig>=0.3.4
PyMySQL>=0.10.1
psutil>=5.9.4
sh>=1.14.3
SQLAlchemy>=1.3.20
SQLAlchemy>=1.4.46
requests>=2.28.1
distro>=1.7.0
argcomplete>=1.12.0

View File

@@ -27,7 +27,7 @@ if os.geteuid() == 0:
os.makedirs('/var/lib/wo/tmp/')
setup(name='wordops',
version='3.16.2',
version='3.16.3',
description='An essential toolset that eases server administration',
long_description=LONG,
long_description_content_type='text/markdown',
@@ -67,7 +67,7 @@ setup(name='wordops',
'PyMySQL >= 0.10.1',
'psutil >= 5.9.4',
'sh >= 1.14.3',
'SQLAlchemy >= 1.3.20',
'SQLAlchemy == 1.4.46',
'requests >= 2.28.1',
'distro >= 1.7.0',
'argcomplete >= 1.12.0',

View File

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