llg3d 3.1.0__tar.gz → 3.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. {llg3d-3.1.0 → llg3d-3.1.1}/PKG-INFO +1 -1
  2. {llg3d-3.1.0 → llg3d-3.1.1}/pyproject.toml +0 -1
  3. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/__init__.py +1 -1
  4. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d.egg-info/PKG-INFO +1 -1
  5. {llg3d-3.1.0 → llg3d-3.1.1}/AUTHORS +0 -0
  6. {llg3d-3.1.0 → llg3d-3.1.1}/LICENSE +0 -0
  7. {llg3d-3.1.0 → llg3d-3.1.1}/README.md +0 -0
  8. {llg3d-3.1.0 → llg3d-3.1.1}/setup.cfg +0 -0
  9. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/__main__.py +0 -0
  10. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/benchmarks/__init__.py +0 -0
  11. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/benchmarks/compare_commits.py +0 -0
  12. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/benchmarks/efficiency.py +0 -0
  13. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/benchmarks/utils.py +0 -0
  14. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/element.py +0 -0
  15. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/grid.py +0 -0
  16. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/io.py +0 -0
  17. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/main.py +0 -0
  18. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/parameters.py +0 -0
  19. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/__init__.py +0 -0
  20. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/extract.py +0 -0
  21. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/info.py +0 -0
  22. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/m1_vs_T.py +0 -0
  23. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/m1_vs_time.py +0 -0
  24. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/process.py +0 -0
  25. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/utils.py +0 -0
  26. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/post/x_profiles.py +0 -0
  27. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/py.typed +0 -0
  28. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/__init__.py +0 -0
  29. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/base.py +0 -0
  30. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/experimental/__init__.py +0 -0
  31. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/experimental/jax.py +0 -0
  32. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/math_utils.py +0 -0
  33. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/mpi.py +0 -0
  34. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/numpy.py +0 -0
  35. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/opencl.py +0 -0
  36. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d/solvers/profiling.py +0 -0
  37. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d.egg-info/SOURCES.txt +0 -0
  38. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d.egg-info/dependency_links.txt +0 -0
  39. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d.egg-info/entry_points.txt +0 -0
  40. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d.egg-info/requires.txt +0 -0
  41. {llg3d-3.1.0 → llg3d-3.1.1}/src/llg3d.egg-info/top_level.txt +0 -0
  42. {llg3d-3.1.0 → llg3d-3.1.1}/tests/test_element.py +0 -0
  43. {llg3d-3.1.0 → llg3d-3.1.1}/tests/test_grid.py +0 -0
  44. {llg3d-3.1.0 → llg3d-3.1.1}/tests/test_io.py +0 -0
  45. {llg3d-3.1.0 → llg3d-3.1.1}/tests/test_main.py +0 -0
  46. {llg3d-3.1.0 → llg3d-3.1.1}/tests/test_parameters.py +0 -0
  47. {llg3d-3.1.0 → llg3d-3.1.1}/tests/test_profiling.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llg3d
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
5
5
  Author-email: Clémentine Courtès <clementine.courtes@math.unistra.fr>, Matthieu Boileau <matthieu.boileau@math.unistra.fr>
6
6
  Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
@@ -79,7 +79,6 @@ doc = [
79
79
  "sphinx-copybutton",
80
80
  "sphinx-autobuild",
81
81
  "sphinx-prompt",
82
- "sphinx-last-updated-by-git",
83
82
  "sphinxcontrib-programoutput",
84
83
  "sphinxcontrib-bibtex",
85
84
  "ipython",
@@ -1,4 +1,4 @@
1
1
  """Main llg3d package."""
2
2
 
3
- __version__ = "3.1.0"
3
+ __version__ = "3.1.1"
4
4
  __all__ = ["__version__"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llg3d
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
5
5
  Author-email: Clémentine Courtès <clementine.courtes@math.unistra.fr>, Matthieu Boileau <matthieu.boileau@math.unistra.fr>
6
6
  Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes