Skip to content

Commit

Permalink
version 1.20231114.1, upgraded pydal, fixed requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Nov 15, 2023
1 parent e4dca70 commit fe78b33
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: clean docs clean-assets assets test setup run build deploy
.PHONY: clean venv docs clean-assets assets test setup run build deploy
asset-apps := _dashboard _default _scaffold _minimal _documentation showcase
asset-zips := $(asset-apps:%=py4web/assets/py4web.app.%.zip)
clean:
Expand All @@ -15,8 +15,9 @@ py4web/assets/py4web.app.%.zip: apps/%
egrep "\.(py|html|css|js|png|jpg|gif|json|yaml|md|txt|mm|ico)$$" | \
zip -@ $(addprefix ../../, $@)
venv:
python3 -m venv venv
python -m venv venv
venv/bin/pip install -U pip
venv/bin/pip install -U -r requirements.txt
venv/bin/pip install ./
docs: venv
venv/bin/pip install -U -r docs/requirements.txt
Expand All @@ -35,8 +36,8 @@ upgrade-vue:
curl -L https://unpkg.com/vue/dist/vue.min.js > apps/_dashboard/static/js/vue.min.js
find apps -name "vue.min.js" -exec cp apps/_dashboard/static/js/vue.min.js {} \;
build: clean assets
python3 -m pip install --upgrade build
python3 -m pip install --upgrade twine
python3 -m build
python -m pip install --upgrade build
python -m pip install --upgrade twine
python -m build
deploy: build
python3 -m twine upload dist/*
python -m twine upload dist/*
2 changes: 1 addition & 1 deletion py4web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Massimo Di Pierro <[email protected]>"
__license__ = "BSD-3-Clause"
__version__ = "1.20231111.1"
__version__ = "1.20231114.1"


def _maybe_gevent():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "py4web"
version = "1.20231111.1"
version = "1.20231114.1"
authors = [{ name="Massimo Di Pierro", email="[email protected]" },]
description = "A fast, stable, comprehensive web framework"
readme = "README.rst"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pycryptodome
pluralize >= 20231008.1
rocket3 >= 20230507.1
yatl >= 20230507.3
pydal >= 20231111.1
pydal >= 20231114.3
watchgod >= 0.6

# optional modules:
Expand Down

0 comments on commit fe78b33

Please sign in to comment.