Skip to content

Commit 7461561

Browse files
Minimum Python Version fix (magpylib#139)
* Add feature trigger to azure * Add Python 3.7 to appveyor * Update min Python version to 3.5
1 parent 290abb6 commit 7461561

27 files changed

+35
-27
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
<p align="center"><img align="center" src=https://i.imgur.com/xXMmGG8.png><p>
3-
<p align="center"><i>magpylib - A simple and user friendly magnetic toolbox for Python 3.2+</i><p>
3+
<p align="center"><i>magpylib - A simple and user friendly magnetic toolbox for Python 3.5+</i><p>
44

55

66

@@ -42,7 +42,7 @@
4242

4343

4444
### Dependencies:
45-
_Python3.2+_, _Numpy_, _Matplotlib_
45+
_Python3.5+_, _Numpy_, _Matplotlib_
4646

4747
---
4848

appveyor.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ environment:
2222
- PYTHON: "C:\\Python35-x64"
2323
PYTHON_VERSION: "3.5.0"
2424
PYTHON_ARCH: "64"
25+
26+
- PYTHON: "C:\\Python37"
27+
PYTHON_VERSION: "3.7.0"
28+
PYTHON_ARCH: "32"
29+
30+
- PYTHON: "C:\\Python37-x64"
31+
PYTHON_VERSION: "3.7.0"
32+
PYTHON_ARCH: "64"
2533

2634
build: off
2735

magpylib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/classes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/classes/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/classes/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/classes/currents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/classes/fieldsampler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/classes/magnets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for calculating magnetic fields from
2+
# magpylib -- A Python 3.5+ toolbox for calculating magnetic fields from
33
# permanent magnets and current distributions.
44
# Copyright (C) 2019 Michael Ortner <[email protected]>
55
#

magpylib/_lib/classes/moments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/fields/Current_CircularLoop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/fields/Current_Line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/fields/Moment_Dipole.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/fields/PM_Box.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/fields/PM_Cylinder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/fields/PM_Sphere.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/fields/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/mathLibPrivate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/mathLibPublic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/_lib/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/math/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/source/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/source/current/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/source/magnet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

magpylib/source/moment/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -------------------------------------------------------------------------------
2-
# magpylib -- A Python 3.2+ toolbox for working with magnetic fields.
2+
# magpylib -- A Python 3.5+ toolbox for working with magnetic fields.
33
# Copyright (C) Silicon Austria Labs, https://silicon-austria-labs.com/,
44
# Michael Ortner <[email protected]>
55
#

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
_name = "magpylib"
2323
_magPyVersion = "1.0.0-beta"
24-
_description = "A simple, user friendly Python 3.2+ toolbox for calculating magnetic fields from permanent magnets and current distributions."
24+
_description = "A simple, user friendly Python 3.5+ toolbox for calculating magnetic fields from permanent magnets and current distributions."
2525
_author_email = "[email protected]"
2626
_author = "Michael Ortner"
2727
_projectUrl = "https://github.com/magpylib/magpylib"

0 commit comments

Comments
 (0)