Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: magpylib/magpylib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.0
Choose a base ref
...
head repository: magpylib/magpylib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.0.1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 27, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6e882e2 View commit details
  2. Merge pull request #342 from magpylib/development

    Add deployment makefile (#341)
    OrtnerMichael authored Jun 27, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    eb9b5ac View commit details
Showing with 22 additions and 0 deletions.
  1. +22 −0 Makefile
22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.PHONY: help clean dev docs package test

help:
@echo "This project assumes that an active Python virtualenv is present."
@echo "The following make targets are available:"
@echo " dev install all deps for dev env"
@echo " docs create pydocs for all relveant modules"
@echo " test run all tests with coverage"

clean:
rm -rf dist/*

dev:
pip install twine
pip install .

package:
python setup.py sdist

test:
coverage run -m pytest
coverage html