Skip to content

Commit ceb2aac

Browse files
Merge branch 'main' into add-tree-api
2 parents ec6ee77 + d7e20a7 commit ceb2aac

File tree

23 files changed

+1281
-1240
lines changed

23 files changed

+1281
-1240
lines changed

.github/workflows/cla.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "MindsDB CLA Assistant"
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_target:
6+
types: [opened,closed,synchronize]
7+
8+
permissions:
9+
actions: write
10+
contents: write
11+
pull-requests: write
12+
statuses: write
13+
14+
jobs:
15+
CLAssistant:
16+
runs-on: mdb-dev
17+
steps:
18+
- name: "CLA Assistant"
19+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
20+
uses: contributor-assistant/[email protected]
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
with:
24+
path-to-signatures: 'assets/contributions-agreement/cla.json'
25+
path-to-document: 'https://github.com/mindsdb/mindsdb/blob/main/assets/contributions-agreement/individual-contributor.md'
26+
branch: 'cla'
27+
allowlist: bot*, ZoranPandovski, torrmal, Stpmax, mindsdbadmin, ea-rus, tmichaeldb, dusvyat, hamishfagg, MinuraPunchihewa, martyna-mindsdb, lucas-koontz

.github/workflows/release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest]
13-
python-version: [3.7,3.8,3.9]
13+
python-version: ['3.8', '3.9', '3.10', '3.11']
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python ${{ matrix.python-version }}
@@ -31,11 +31,6 @@ jobs:
3131
3232
fi
3333
shell: bash
34-
env:
35-
CHECK_FOR_UPDATES: False
36-
DATABASE_CREDENTIALS_STRINGIFIED_JSON: ${{ secrets.DATABASE_CREDENTIALS }}
37-
CLOUD_TEST_EMAIL: ${{ secrets.CLOUD_TEST_EMAIL }}
38-
CLOUD_TEST_PASSWORD: ${{ secrets.CLOUD_TEST_PASSWORD }}
3934

4035

4136
deploy:
@@ -46,7 +41,7 @@ jobs:
4641
- name: Set up Python
4742
uses: actions/setup-python@v2
4843
with:
49-
python-version: '3.7'
44+
python-version: '3.9'
5045
- name: Install dependencies
5146
run: |
5247
python -m pip install --upgrade pip==20.2.4

.github/workflows/test_prs.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest]
14-
python-version: [3.7,3.8,3.9]
14+
python-version: ['3.8', '3.9', '3.10', '3.11']
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up Python ${{ matrix.python-version }}
@@ -32,11 +32,6 @@ jobs:
3232
3333
fi
3434
shell: bash
35-
env:
36-
CHECK_FOR_UPDATES: False
37-
DATABASE_CREDENTIALS_STRINGIFIED_JSON: ${{ secrets.DATABASE_CREDENTIALS }}
38-
CLOUD_TEST_EMAIL: ${{ secrets.CLOUD_TEST_EMAIL }}
39-
CLOUD_TEST_PASSWORD: ${{ secrets.CLOUD_TEST_PASSWORD }}
4035

4136
coverage:
4237
needs: test

LICENSE

Lines changed: 21 additions & 674 deletions
Large diffs are not rendered by default.

assets/contributions-agreement/cla.json

Whitespace-only changes.

mindsdb_sdk/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
__title__ = 'mindsdb_sdk'
22
__package_name__ = 'mindsdb_sdk'
3-
__version__ = '3.1.6'
3+
__version__ = '3.4.6'
44
__description__ = "MindsDB Python SDK, provides an SDK to use a remote mindsdb instance"
55
__email__ = "[email protected]"
66
__author__ = 'MindsDB Inc'
77
__github__ = 'https://github.com/mindsdb/mindsdb_python_sdk'
88
__pypi__ = 'https://pypi.org/project/mindsdb-sdk/'
9-
__license__ = 'GPL-3.0'
9+
__license__ = 'MIT'
1010
__copyright__ = 'Copyright 2020- mindsdb'

0 commit comments

Comments
 (0)