Skip to content

Commit

Permalink
Merge branch 'development' into no_config
Browse files Browse the repository at this point in the history
  • Loading branch information
rantahar committed Oct 29, 2024
2 parents 7203d22 + 75d4bc4 commit a5120f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
pandas-version:
- '2.2'
steps:
- uses: actions/checkout@v2
- name: setup python
Expand All @@ -19,7 +21,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
pip install .[test,sentiment]
pip install .[test,sentiment] pandas==${{ matrix.pandas-version }}
- name: pytest
run: |
pytest --run_sentiment
2 changes: 1 addition & 1 deletion niimpy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.2.0'
__version__ = '1.2.1'
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "niimpy"

[project]
name = "niimpy"
version = "1.2.0"
version = "1.2.1"
readme = "README.md"
description = "Python module for analysis of behavioral data"
authors = [
Expand All @@ -18,7 +18,7 @@ requires-python = ">=3.8"
dependencies = [
"python-dateutil",
"numpy",
"pandas",
"pandas>=2.2",
"matplotlib",
"seaborn",
"plotly",
Expand Down Expand Up @@ -56,7 +56,7 @@ Repository = "https://github.com/digitraceslab/niimpy"


[bumpver]
current_version = "1.2.0"
current_version = "1.2.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down

0 comments on commit a5120f3

Please sign in to comment.