Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pandas 1.5 incompatibility #25

Merged
merged 6 commits into from
Oct 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book/_config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Book settings
# Learn more at https://jupyterbook.org/customize/config.html

title: "v5.7.0"
title: "v5.7.1"
author: Jeffrey Newman
logo: img/larch-logo.png

Expand Down Expand Up @@ -99,6 +99,6 @@ sphinx:
switcher:
json_url: https://larch.newman.me/_static/switcher.json
url_template: https://larch.newman.me/v{version}/
version_match: 5.7.0
version_match: 5.7.1
navbar_end:
- version-switcher
4 changes: 2 additions & 2 deletions book/_static/switcher.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"name": "v5.7.0 (latest)",
"version": "5.7.0"
"name": "v5.7.1 (latest)",
"version": "5.7.1"
},
{
"version": "5.4.1"
Expand Down
3 changes: 1 addition & 2 deletions bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.7.0
current_version = 5.7.1
commit = True
tag = True

Expand All @@ -10,4 +10,3 @@ tag = True
[bumpversion:file:book/_config.yml]

[bumpversion:file:book/_static/switcher.json]

4 changes: 2 additions & 2 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: larch
version: "5.7.0"
version: "5.7.1"

source:
path: ../
Expand Down Expand Up @@ -34,7 +34,7 @@ requirements:
- llvm-openmp # [osx]
- {{ pin_compatible('numpy', upper_bound='1.22') }}
- scipy >=1.1
- pandas >=0.24
- pandas >=0.24,<1.5
- pytables >=3.4.4 # https://github.com/conda-forge/pytables-feedstock/issues/31
- blosc >=1.14.3
- matplotlib >=3.0
Expand Down
2 changes: 1 addition & 1 deletion environments/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies:
- numexpr
- openmatrix
- openpyxl
- pandas >=1.2
- pandas >=1.2,<1.5
- pillow
- pyarrow
- pydot
Expand Down
2 changes: 1 addition & 1 deletion larch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '5.7.0'
__version__ = '5.7.1'

from .util.interface_info import Info, ipython_status
import sys
Expand Down
Loading