Skip to content
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
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
## Version 1.3.1 (TBD)
### 👷 Bug fixes
- Pin version of Numpy to be < 2.0.0 because `trapz` is renamed in higher versions
- Pin version of Scipy to be < 1.14.0 because `mvnun` is deprecated in higher versions

## Version 1.3 (18/03/2024)
### 🎉 New Features
- Add support for pandas 2.X branch

### 👷 Bug fixes
- Pin version of Numpy to be < 2.0.0 because `trapz` is renamed in higher versions

## Version 1.2 (15/3/2024)
### 🎉 New Features
- Add support for python 3.12
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type: software
license: 'GPL-3.0-or-later'
repository-code: "https://resourcecode-project.github.io/py-resourcecode/"
url: "https://resourcecode-project.github.io/py-resourcecode/"
version: 1.1.3
version: 1.3.1
date-released: '2023-03-18'
authors:
- given-names: Nicolas
Expand Down
2 changes: 1 addition & 1 deletion resourcecode/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
# You should have received a copy of the GNU General Public License along
# with Resourcecode. If not, see <https://www.gnu.org/licenses/>.

numversion = (1, 1, 3)
numversion = (1, 3, 1)
__version__ = ".".join(str(num) for num in numversion)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"pandas >= 1.0.0, < 3.0.0",
"requests >= 2.23.0",
"numpy >= 1.20.1, < 2.0.0",
"scipy >= 1.6.1",
"scipy >= 1.6.1, < 1.14.0",
"pyextremes >= 2.0.0",
"pytest >= 7.0.0",
"pyarrow >= 6.0.0",
Expand Down
Loading