-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip: pandas 2, pydantic 2 compatibility * fixed: tests with migration to pydantic v2 * fixed: generate_v2 write files * fixed: removed py3.7 from matrix, added py3.10, py3.11 * fixed: removed py3.7 from matrix, added py3.10, py3.11 * fixed: python 3.10 issue * fixed: formatted with black * adding tomli * fixed: added tomli as dev dependency * fixed: added tomli as dev dependency * fixed: added tomli as dev dependency * fixed: added tomli as dev dependency * fixed: added tomli as dev dependency
- Loading branch information
Showing
23 changed files
with
2,684 additions
and
1,866 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9] | ||
poetry-version: [1.2] | ||
python-version: [3.8, 3.9, "3.10", 3.11] | ||
poetry-version: [1.8] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
|
||
|
@@ -72,14 +72,14 @@ jobs: | |
with: | ||
submodules: recursive | ||
|
||
- name: Set up Python 3.7 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Set up Poetry 1.2 | ||
python-version: 3.8 | ||
- name: Set up Poetry 1.8 | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.2 | ||
poetry-version: 1.8 | ||
|
||
- uses: actions/download-artifact@v2 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ jobs: | |
if: "!github.event.release.prerelease" | ||
strategy: | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9] | ||
poetry-version: [1.2] | ||
python-version: [3.8, 3.9, "3.10", 3.11] | ||
poetry-version: [1.8] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
|
||
|
@@ -72,15 +72,15 @@ jobs: | |
with: | ||
submodules: recursive | ||
|
||
- name: Set up Python 3.7 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
python-version: 3.8 | ||
|
||
- name: Set up Poetry 1.2 | ||
- name: Set up Poetry 1.8 | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.2 | ||
poetry-version: 1.8 | ||
|
||
- name: Set up cache | ||
uses: actions/cache@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
DataFrameSummaryError, | ||
) | ||
|
||
__version__ = "0.0.11" | ||
__version__ = "0.0.12" | ||
|
||
__all__ = [ | ||
"validate", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.