Skip to content

Commit abcb489

Browse files
Correct version number
1 parent ece998c commit abcb489

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

nutcase/app/config.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ class Config(object):
2222
# Core info
2323
#==================================================================
2424
APP_NAME = 'NUTCase'
25-
APP_VERSION = '0.3.0'
25+
APP_VERSION = '0.3.1'
2626

2727
#==================================================================
2828
# Configuration file
2929
#==================================================================
30-
CONFIG_PATH = os.path.join(basedir, '../config' )
30+
CONFIG_PATH = os.path.join(basedir, '../config' )
3131
CONFIG_FILE = APP_NAME.lower()
3232

3333
#==================================================================
@@ -94,7 +94,7 @@ class Config_Development(Config):
9494
SECRET_KEY = os.environ.get('SECRET_KEY') or 'uUwb-C58lzujc3Xn0hZ8c48iHw-VA341'
9595
DEBUG = True
9696
TESTING = False
97-
97+
9898
class Config_Production(Config):
9999
CONFIG_SET = 'Prd'
100100
SECRET_KEY = os.environ.get('SECRET_KEY') or 'uUwb-C58lzujc3Xn0hZ8c48iHw-VA341'

nutcase/app/requirements.txt

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
arrow==1.3.0
22
blinker==1.7.0
33
click==8.1.7
4-
Flask==3.0.1
4+
flake8==7.0.0
5+
Flask==3.0.2
56
Flask-WTF==1.2.1
67
itsdangerous==2.1.2
78
Jinja2==3.1.3
8-
MarkupSafe==2.1.4
9+
MarkupSafe==2.1.5
10+
mccabe==0.7.0
11+
pycodestyle==2.11.1
12+
pyflakes==3.2.0
913
python-dateutil==2.8.2
1014
python-dotenv==1.0.1
1115
PyYAML==6.0.1

nutcase/install_pip.sh nutcase/pip_install.sh

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ pip install -U python-dotenv
55
pip install -U pyyaml
66
pip install -U flask_wtf
77
pip install -U arrow
8+
pip install -U flake8

0 commit comments

Comments
 (0)