Skip to content

Commit

Permalink
sqlalchemy and pandas added to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrolexa committed May 15, 2024
1 parent 0c5c2be commit 61c4cb7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changes

### 1.2.0 (master)
* sqlalchemy and pandas added to requirements

### 1.1.5 (May 15 2024)
* paleomag Core .dd bug fixed
* fix round-off domain math error for acosd and asind
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
# the built documents.
#
# The short X.Y version.
version = "1.1"
version = "1.2"
# The full version, including alpha/beta/rc tags.
release = "1.1.5"
release = "1.2.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ dependencies:
- matplotlib
- scipy
- pandas
- sqlalchemy
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.5
current_version = 1.2.0
commit = False
tag = False

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="apsg",
version="1.1.5",
version="1.2.0",
description="APSG - The package for structural geologists",
long_description=readme + "\n\n" + history,
long_description_content_type="text/markdown",
Expand All @@ -37,11 +37,11 @@
],
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=["numpy", "matplotlib", "scipy"],
install_requires=["numpy", "matplotlib", "scipy", "sqlalchemy", "pandas"],
extras_require={
"docs": ["sphinx", "ipykernel", "nbsphinx"],
"test": ["pytest", "black"],
"extra": ["jupyterlab", "pandas"],
"extra": ["jupyterlab"],
},
project_urls={
"Documentation": "https://apsg.readthedocs.io/",
Expand Down
2 changes: 1 addition & 1 deletion src/apsg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@
"quicknet",
)

__version__ = "1.1.5"
__version__ = "1.2.0"
__author__ = "Ondrej Lexa"
__email__ = "[email protected]"

0 comments on commit 61c4cb7

Please sign in to comment.