Skip to content

Commit

Permalink
Merge pull request #18 from paulocoutinhox/update-deps
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
paulocoutinhox authored Nov 17, 2023
2 parents 79b2ea8 + 8dd7811 commit 4875c6e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
config:
- { name: "Linux", os: ubuntu-latest }
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ https://jinja.palletsprojects.com/en/3.0.x/

Each service that build the static content automatically use a specific python version.

If you need change the python version used to build all files and pages, edit file `runtime.txt` and change to `3.7`, `3.8`, `3.9` or other.
If you need change the python version used to build all files and pages, edit file `runtime.txt` and change to `3.8`, `3.9` or other.

These services that im using have this python version:

Expand Down
2 changes: 1 addition & 1 deletion modules/commands/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


# -----------------------------------------------------------------------------
def run(params = {}):
def run(params={}):
system.force_debug = False

system.initialize()
Expand Down
2 changes: 1 addition & 1 deletion modules/commands/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


# -----------------------------------------------------------------------------
def run(params = {}):
def run(params={}):
system.force_debug = True

system.initialize()
Expand Down
2 changes: 1 addition & 1 deletion modules/time.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ def current_time():


# -----------------------------------------------------------------------------
def current_milli_time():
def current_time_ms():
return round(time.time() * 1000)
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
libsass
flask<3.0.0
frozen-flask
flask>=3.0.0
frozen-flask>=1.0.1
livereload
calmjs.parse
python-dotenv
dukpy
pygemstones
werkzeug<3.0.0
werkzeug>=3.0.0

0 comments on commit 4875c6e

Please sign in to comment.