Skip to content

Commit

Permalink
Merge pull request #346 from mindsdb/staging
Browse files Browse the repository at this point in the history
Release 0.10.3 (fixed)
  • Loading branch information
ea-rus authored Jan 23, 2024
2 parents 8d0fa56 + cae9b3e commit 99d8b34
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
pip install --no-cache-dir -e .[test]
- name: Run unit tests
run: pytest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
pip install pytest-cov
pip install --no-cache-dir -e .[test]
- name: Run unit tests
Expand All @@ -46,6 +47,7 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Build coverage file
run: |
Expand Down
1 change: 0 additions & 1 deletion mindsdb_sql/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
__pypi__ = 'https://pypi.org/project/mindsdb_sql'
__license__ = 'GPL-3.0'
__copyright__ = 'Copyright 2021- mindsdb'

1 change: 0 additions & 1 deletion mindsdb_sql/parser/lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,3 @@ def DQUOTE_STRING(self, t):
@_(r'\n+')
def ignore_newline(self, t):
self.lineno += len(t.value)

0 comments on commit 99d8b34

Please sign in to comment.