fargopy 1.0.3__tar.gz → 1.0.4__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 (25) hide show
  1. {fargopy-1.0.3/src/fargopy.egg-info → fargopy-1.0.4}/PKG-INFO +3 -2
  2. {fargopy-1.0.3 → fargopy-1.0.4}/README.md +1 -0
  3. {fargopy-1.0.3 → fargopy-1.0.4}/setup.py +2 -2
  4. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/base.py +1 -1
  5. {fargopy-1.0.3 → fargopy-1.0.4/src/fargopy.egg-info}/PKG-INFO +3 -2
  6. {fargopy-1.0.3 → fargopy-1.0.4}/LICENSE +0 -0
  7. {fargopy-1.0.3 → fargopy-1.0.4}/pyproject.toml +0 -0
  8. {fargopy-1.0.3 → fargopy-1.0.4}/setup.cfg +0 -0
  9. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/__init__.py +0 -0
  10. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/bin/ifargopy +0 -0
  11. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/bin/vfargopy +0 -0
  12. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/data/fargopy_logo.png +0 -0
  13. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/fields.py +0 -0
  14. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/flux.py +0 -0
  15. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/plot.py +0 -0
  16. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/simulation.py +0 -0
  17. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/sys.py +0 -0
  18. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/tests/test_base.py +0 -0
  19. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/tests/test_flux.py +0 -0
  20. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/tests/test_interp.py +0 -0
  21. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/SOURCES.txt +0 -0
  22. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/dependency_links.txt +0 -0
  23. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/entry_points.txt +0 -0
  24. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/requires.txt +0 -0
  25. {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fargopy
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: FARGO3D Wrapper
5
5
  Home-page: https://pypi.org/project/fargopy
6
6
  Author: Jorge Zuluaga, Alejandro Murillo-González, Matias Montesinos
@@ -9,7 +9,7 @@ License: AGPL-3.0-only
9
9
  Keywords: astronomy MHD CFD
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Operating System :: OS Independent
12
- Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Development Status :: 4 - Beta
13
13
  Classifier: Intended Audience :: Science/Research
14
14
  Classifier: Topic :: Scientific/Engineering :: Astronomy
15
15
  Classifier: Topic :: Scientific/Engineering :: Physics
@@ -136,6 +136,7 @@ try:
136
136
  %pip install -Uq git+https://github.com/seap-udea/fargopy
137
137
  except ImportError:
138
138
  print("Not running in Colab, skipping installation")
139
+ %mkdir -p ./gallery/
139
140
  ```
140
141
 
141
142
  Not running in Colab, skipping installation
@@ -90,6 +90,7 @@ try:
90
90
  %pip install -Uq git+https://github.com/seap-udea/fargopy
91
91
  except ImportError:
92
92
  print("Not running in Colab, skipping installation")
93
+ %mkdir -p ./gallery/
93
94
  ```
94
95
 
95
96
  Not running in Colab, skipping installation
@@ -22,12 +22,12 @@ setuptools.setup(
22
22
  classifiers=[
23
23
  "Programming Language :: Python :: 3",
24
24
  "Operating System :: OS Independent",
25
- "Development Status :: 3 - Alpha",
25
+ "Development Status :: 4 - Beta",
26
26
  "Intended Audience :: Science/Research",
27
27
  "Topic :: Scientific/Engineering :: Astronomy",
28
28
  "Topic :: Scientific/Engineering :: Physics",
29
29
  ],
30
- version='1.0.3',
30
+ version='1.0.4',
31
31
  # ######################################################################
32
32
  # FILES
33
33
  # ######################################################################
@@ -16,7 +16,7 @@ import sys
16
16
  import numpy as np
17
17
 
18
18
  # Version
19
- __version__ = '1.0.3'
19
+ __version__ = '1.0.4'
20
20
 
21
21
  __all__ = [
22
22
  "__version__",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fargopy
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: FARGO3D Wrapper
5
5
  Home-page: https://pypi.org/project/fargopy
6
6
  Author: Jorge Zuluaga, Alejandro Murillo-González, Matias Montesinos
@@ -9,7 +9,7 @@ License: AGPL-3.0-only
9
9
  Keywords: astronomy MHD CFD
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Operating System :: OS Independent
12
- Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Development Status :: 4 - Beta
13
13
  Classifier: Intended Audience :: Science/Research
14
14
  Classifier: Topic :: Scientific/Engineering :: Astronomy
15
15
  Classifier: Topic :: Scientific/Engineering :: Physics
@@ -136,6 +136,7 @@ try:
136
136
  %pip install -Uq git+https://github.com/seap-udea/fargopy
137
137
  except ImportError:
138
138
  print("Not running in Colab, skipping installation")
139
+ %mkdir -p ./gallery/
139
140
  ```
140
141
 
141
142
  Not running in Colab, skipping installation
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes