Skip to content

Commit e25ef8f

Browse files
bump(pythoncms): 4.5.0
1 parent 2419370 commit e25ef8f

File tree

430 files changed

+52619
-16956
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

430 files changed

+52619
-16956
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ Go to [http://127.0.0.1:5000](http://127.0.0.1:5000)
5252

5353
## 🍼 First time setup
5454

55+
- Install maildev
56+
57+
- Run `maildev`, go to the webapp url shown
58+
5559
- Download and install the [latest version of git](https://git-scm.com/downloads).
5660

5761
- Configure git with your [username](https://docs.github.com/en/github/using-git/setting-your-username-in-git) and [email](https://docs.github.com/en/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address).

reqs/app.in

6 Bytes
Binary file not shown.

reqs/app.txt

+6-3
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,22 @@ pymysql==1.0.2
8888
# via -r reqs/app.in
8989
python-dateutil==2.8.2
9090
# via pandas
91+
pythoncms==1.2.1
92+
# via -r reqs/app.in
9193
pytz==2022.2.1
9294
# via pandas
93-
shopyo==4.5.8
94-
# via -r reqs/app.in
95+
shopyo==4.8.6
96+
# via pythoncms
9597
six==1.16.0
9698
# via
9799
# flask-marshmallow
98100
# python-dateutil
99-
sqlalchemy==1.4.27
101+
sqlalchemy==1.4.46
100102
# via
101103
# alembic
102104
# flask-sqlalchemy
103105
# marshmallow-sqlalchemy
106+
# pythoncms
104107
# shopyo
105108
werkzeug==2.2.2
106109
# via

reqs/dev.txt

+5-2
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,8 @@ pytest-order==1.0.0
175175
# via -r reqs/dev.in
176176
python-dateutil==2.8.2
177177
# via pandas
178+
pythoncms==1.2.1
179+
# via -r reqs/app.in
178180
pytz==2021.3
179181
# via
180182
# babel
@@ -185,8 +187,8 @@ requests==2.26.0
185187
# via
186188
# codecov
187189
# sphinx
188-
shopyo==4.5.8
189-
# via -r reqs/app.in
190+
shopyo==4.8.6
191+
# via pythoncms
190192
six==1.16.0
191193
# via
192194
# flask-marshmallow
@@ -214,6 +216,7 @@ sqlalchemy==1.4.46
214216
# alembic
215217
# flask-sqlalchemy
216218
# marshmallow-sqlalchemy
219+
# pythoncms
217220
# shopyo
218221
toml==0.10.2
219222
# via

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
long_description = f.read()
3535
setup(
3636
name="shopcube", # Required
37-
version="4.4.0", # Required
37+
version="4.5.0", # Required
3838
description="E-commerce solution", # Optional
3939
long_description=long_description, # Optional
4040
long_description_content_type="text/markdown", # Optional (see note above)
@@ -59,11 +59,11 @@
5959
# that you indicate whether you support Python 2, Python 3 or both.
6060
# These classifiers are *not* checked by 'pip install'. See instead
6161
# 'python_requires' below.
62-
"Programming Language :: Python :: 3.6",
6362
"Programming Language :: Python :: 3.7",
6463
"Programming Language :: Python :: 3.8",
6564
"Programming Language :: Python :: 3.9",
6665
"Programming Language :: Python :: 3.10",
66+
"Programming Language :: Python :: 3.11",
6767
],
6868
keywords="flask pos management shop ecommerce cms erp e-commerce", # Optional
6969
# You can just specify package directories manually here if your project is

src/shopcube/.test.prod.env

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
SECRET_KEY = "secret"
2+
MAIL_USERNAME = "[email protected]"
3+
MAIL_PASSWORD = "pass"
4+
MAIL_DEFAULT_SENDER = "[email protected]"
5+
SQLALCHEMY_DATABASE_URI = "mysql+pymysql://db_username:db_password@db_host/db_name"

src/shopcube/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
version_info = (1, 2, 1)
2+
__version__ = ".".join([str(v) for v in version_info])

src/shopcube/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ def main():
6868

6969

7070
if __name__ == "__main__":
71-
main()
71+
main()

0 commit comments

Comments
 (0)