Skip to content

Commit

Permalink
Upgrade Python to 3.9.1 (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
brainix committed Dec 19, 2020
1 parent 7156e48 commit d8fa79b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ THIS_FILE := $(lastword $(MAKEFILE_LIST))
venv ?= venv

init upgrade: formulae := {openssl,readline,xz,redis}
python upgrade: version ?= 3.9.0
python upgrade: version ?= 3.9.1
upgrade: requirements ?= requirements-to-freeze.txt

clean-redis clean-redis-2: keys_to_delete = \
Expand Down Expand Up @@ -114,4 +114,9 @@ release:

.PHONY: clean
clean:
rm -rf {$(venv),.coverage,.mypy_cache,dist/*}
rm -rf {$(venv),.coverage,.mypy_cache,build/*,dist/*}


.PHONY: lines-of-code
lines-of-code:
find . -name '*.py' -not -path "./venv/*" -not -path "./build/*" | xargs wc -l

0 comments on commit d8fa79b

Please sign in to comment.