Skip to content

Commit

Permalink
Merge pull request #10 from lpm0073/makefile-python3
Browse files Browse the repository at this point in the history
Consistently use python3 in Makefile
  • Loading branch information
jcohen28 authored Dec 20, 2022
2 parents d7e25a1 + 2a0740d commit eb67a3f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGE LOG

## Version 0.0.13 (2022-12-20)
## Version 1.0.1 (2022-12-20)

- standardize usage of python3 in Makefile

## Version 1.0.0 (2022-12-20)

- general production release

Expand Down
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,22 @@ django-test:

requirements:
pre-commit autoupdate
python -m pip install --upgrade pip wheel
python3 -m pip install --upgrade pip wheel
pip-compile requirements/common.in
pip-compile requirements/local.in
pip install -r requirements/common.txt
pip install -r requirements/local.txt

deps-init:
rm -rf .tox
python -m pip install --upgrade pip wheel
python -m pip install --upgrade -r requirements/common.txt -r requirements/local.txt -e .
python -m pip check
python3 -m pip install --upgrade pip wheel
python3 -m pip install --upgrade -r requirements/common.txt -r requirements/local.txt -e .
python3 -m pip check

deps-update:
python -m pip install --upgrade pip-tools pip wheel
python -m piptools compile --upgrade --resolver backtracking -o ./requirements/common.txt pyproject.toml
python -m piptools compile --extra dev --upgrade --resolver backtracking -o ./requirements/local.txt pyproject.toml
python3 -m pip install --upgrade pip-tools pip wheel
python3 -m piptools compile --upgrade --resolver backtracking -o ./requirements/common.txt pyproject.toml
python3 -m piptools compile --extra dev --upgrade --resolver backtracking -o ./requirements/local.txt pyproject.toml


report:
Expand All @@ -64,7 +64,7 @@ report:

build:
python3 -m pip install --upgrade setuptools wheel twine
python -m pip install --upgrade build
python3 -m pip install --upgrade build

if [ -d "./build" ]; then sudo rm -r build; fi
if [ -d "./dist" ]; then sudo rm -r dist; fi
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta:__legacy__"
#------------------------------------------------------------------------------
[project]
name = "django-memberpress-client"
version = "1.0.0"
version = "1.0.1"
authors = [
{ name="Lawrence McDaniel", email="[email protected]" }
]
Expand Down

0 comments on commit eb67a3f

Please sign in to comment.