completor 0.1.2__tar.gz → 0.1.3__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 (26) hide show
  1. {completor-0.1.2 → completor-0.1.3}/PKG-INFO +2 -2
  2. {completor-0.1.2 → completor-0.1.3}/pyproject.toml +2 -2
  3. {completor-0.1.2 → completor-0.1.3}/LICENSE +0 -0
  4. {completor-0.1.2 → completor-0.1.3}/README.md +0 -0
  5. {completor-0.1.2 → completor-0.1.3}/completor/__init__.py +0 -0
  6. {completor-0.1.2 → completor-0.1.3}/completor/completion.py +0 -0
  7. {completor-0.1.2 → completor-0.1.3}/completor/config_jobs/run_completor +0 -0
  8. {completor-0.1.2 → completor-0.1.3}/completor/constants.py +0 -0
  9. {completor-0.1.2 → completor-0.1.3}/completor/create_output.py +0 -0
  10. {completor-0.1.2 → completor-0.1.3}/completor/create_wells.py +0 -0
  11. {completor-0.1.2 → completor-0.1.3}/completor/exceptions/__init__.py +0 -0
  12. {completor-0.1.2 → completor-0.1.3}/completor/exceptions/clean_exceptions.py +0 -0
  13. {completor-0.1.2 → completor-0.1.3}/completor/exceptions/exceptions.py +0 -0
  14. {completor-0.1.2 → completor-0.1.3}/completor/hook_implementations/jobs.py +0 -0
  15. {completor-0.1.2 → completor-0.1.3}/completor/input_validation.py +0 -0
  16. {completor-0.1.2 → completor-0.1.3}/completor/launch_args_parser.py +0 -0
  17. {completor-0.1.2 → completor-0.1.3}/completor/logger.py +0 -0
  18. {completor-0.1.2 → completor-0.1.3}/completor/main.py +0 -0
  19. {completor-0.1.2 → completor-0.1.3}/completor/parse.py +0 -0
  20. {completor-0.1.2 → completor-0.1.3}/completor/prepare_outputs.py +0 -0
  21. {completor-0.1.2 → completor-0.1.3}/completor/pvt_model.py +0 -0
  22. {completor-0.1.2 → completor-0.1.3}/completor/read_casefile.py +0 -0
  23. {completor-0.1.2 → completor-0.1.3}/completor/read_schedule.py +0 -0
  24. {completor-0.1.2 → completor-0.1.3}/completor/utils.py +0 -0
  25. {completor-0.1.2 → completor-0.1.3}/completor/visualization.py +0 -0
  26. {completor-0.1.2 → completor-0.1.3}/completor/visualize_well.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: completor
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Advanced mulit-segmented well completion tool.
5
5
  Home-page: https://github.com/equinor/completor
6
6
  License: LGPL-3.0-only
@@ -20,7 +20,7 @@ Requires-Dist: docutils (==0.20.1) ; extra == "ert"
20
20
  Requires-Dist: ert (>=10.1.2,<11.0.0) ; extra == "ert"
21
21
  Requires-Dist: matplotlib (>=3.7,<4.0)
22
22
  Requires-Dist: numpy (>=1.24,<2.0)
23
- Requires-Dist: pandas (>=2.0,<3.0)
23
+ Requires-Dist: pandas (==1.5.3)
24
24
  Requires-Dist: pyqt5-qt5 (==5.15.2) ; extra == "ert"
25
25
  Requires-Dist: rstcheck-core (>=1.2.1,<2.0.0) ; extra == "ert"
26
26
  Requires-Dist: scipy (>=1.10,<2.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "completor"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "Advanced mulit-segmented well completion tool."
5
5
  authors = ["Equinor ASA <opensource@equinor.com>"]
6
6
  repository = "https://github.com/equinor/completor"
@@ -26,7 +26,7 @@ classifiers = [
26
26
  python = ">=3.8.1, <3.12"
27
27
  matplotlib = "^3.7"
28
28
  numpy = "^1.24"
29
- pandas = "^2.0"
29
+ pandas = "1.5.3"
30
30
  scipy = "^1.10"
31
31
 
32
32
  docutils = {version="0.20.1", optional=true} # Pinned due to problems with OS spesific builds
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes