Skip to content

Commit 5261008

Browse files
authored
Merge pull request #68 from mindsdb/staging
Release 0.0.25
2 parents bcd965a + d003f07 commit 5261008

File tree

6 files changed

+228
-49
lines changed

6 files changed

+228
-49
lines changed

.github/workflows/cla.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@ on:
33
issue_comment:
44
types: [created]
55
pull_request_review:
6-
6+
7+
permissions:
8+
actions: write
9+
contents: write
10+
pull-requests: write
11+
statuses: write
12+
713
jobs:
814
CLAssistant:
9-
runs-on: ubuntu-latest
15+
runs-on: mdb-dev
1016
steps:
1117
- name: "CLA Assistant"
1218
if: (github.event.comment.body == 'recheckcla' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request'
13-
# Alpha Release
14-
uses: cla-assistant/[email protected]
19+
uses: cla-assistant/[email protected]
1520
env:
16-
GITHUB_TOKEN: ${{ secrets.CLA_TOKEN }}
17-
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_TOKEN }}
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1822
with:
1923
path-to-signatures: 'assets/contributions-agreement/signatures/cla.json'
20-
# Add path to the CLA here
2124
path-to-document: 'https://github.com/mindsdb/mindsdb_native/blob/stable/assets/contributions-agreement/individual-contributor.md'
2225
branch: 'staging'
2326
allowlist: bot*, ZoranPandovski, torrmal, Stpmax, paxcema, mindsdbadmin, Ricram2, ea-rus, ilia-tsyplenkov, tomhuds

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: setup python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.10
21+
python-version: "3.10"
2222

2323
- name: install all dependencies
2424
run: |

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
python-version: ["3.10","3.11", "3.12"]
19+
python-version: ["3.10","3.11", "3.12", "3.13"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ matrix.python-version }}

dataprep_ml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from dataprep_ml.base import StatisticalAnalysis, DataAnalysis
22

3-
__version__ = '0.0.24'
3+
__version__ = '0.0.25'
44
__name__ = "dataprep_ml"
55

66

0 commit comments

Comments
 (0)