-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dataframe handling for pandas 2.0, update to version 1.2.6 for…
… pip.
- Loading branch information
Kayla Iacovino
committed
Feb 12, 2024
1 parent
f8add53
commit 1a175be
Showing
9 changed files
with
39 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
Metadata-Version: 2.1 | ||
Name: VESIcal | ||
Version: 1.2.5 | ||
Version: 1.2.6 | ||
Summary: A generalized python library for calculating and plotting various things related to mixed volatile (H2O-CO2) solubility in silicate melts. | ||
Home-page: https://github.com/kaylai/VESIcal | ||
Author: Kayla Iacovino, Simon Matthews, Penny Wieser | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Platform: UNKNOWN | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Requires-Python: >=3.6 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE | ||
Requires-Dist: pandas | ||
Requires-Dist: numpy | ||
Requires-Dist: matplotlib | ||
Requires-Dist: scipy | ||
Requires-Dist: sympy | ||
Requires-Dist: openpyxl | ||
|
||
# VESIcal | ||
A generalized python library for calculating and plotting various things related to mixed volatile (H2O-CO2) solubility in silicate melts. | ||
|
@@ -112,5 +116,3 @@ pip install VESIcal --upgrade | |
Issues are tracked on [GitHub](https://github.com/kaylai/VESIcal/issues). | ||
|
||
Patches may be submitted via a [Github pull request](https://github.com/kaylai/VESIcal/pulls). All changes should include tests (VESIcal uses python's unittest library) and pass [flake8](https://pypi.org/project/flake8/). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file renamed
BIN
+131 KB
dist/VESIcal-1.2.5-py3-none-any.whl → dist/VESIcal-1.2.6-py3-none-any.whl
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
numpy==1.23 | ||
scipy==1.8.1 | ||
numpy==1.26.3 | ||
scipy==1.11.4 | ||
sympy==1.9 | ||
pandas==1.2.3 | ||
matplotlib==3.4.3 | ||
openpyxl>=1.1.0 | ||
pandas==2.1.4 | ||
matplotlib==3.8.2 | ||
openpyxl==3.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="VESIcal", | ||
version="1.2.5", | ||
version="1.2.6", | ||
author="Kayla Iacovino, Simon Matthews, Penny Wieser", | ||
author_email="[email protected]", | ||
description=("A generalized python library for calculating and plotting various things " | ||
|