diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..733537c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: CloudQuery Central Issues Tracker + url: https://github.com/cloudquery/cloudquery/issues + about: Please file any issue with regards to any of CloudQuery repo in the main repository with the right labels. + - name: CloudQuery Discord Support + url: https://cloudquery.io/discord + about: Join our discord to get live support from us and the community. diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a4f6ce0..c9f4c8c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,8 +14,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: "3.11" - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install --upgrade pip + pip install -r requirements.txt - name: Check formatting run: make fmt-check diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 3f6e2d7..2be8cd1 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -16,8 +16,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.11' - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install --upgrade pip + pip install -r requirements.txt - name: Run tests run: make test diff --git a/CHANGELOG.md b/CHANGELOG.md index 847680b..34548e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.19](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.18...v0.0.19) (2023-10-27) + + +### Bug Fixes + +* **deps:** Update dependency pyarrow to v13 ([#19](https://github.com/cloudquery/plugin-pb-python/issues/19)) ([361a318](https://github.com/cloudquery/plugin-pb-python/commit/361a318d7b116744a36ac808784d5e5c0b72ec21)) + ## [0.0.18](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.17...v0.0.18) (2023-10-12) diff --git a/requirements.txt b/requirements.txt index 4792f28..860f7f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ black==23.9.1 grpcio-tools==1.59.0 grpcio==1.59.0 protobuf==4.24.3 -pyarrow==12.0.1 +pyarrow==13.0.0 pytest==7.4.2 \ No newline at end of file diff --git a/setup.py b/setup.py index febd04b..15b712c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ "grpcio >= 1.56.0", "grpcio-tools >= 1.56.0", "protobuf >= 4.23.4", - "pyarrow >= 12.0.1", + "pyarrow >= 13.0.0", ] url = "https://github.com/cloudquery/plugin-pb-python" @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.18", + version="0.0.19", description=description, long_description=long_description, author="CloudQuery LTD",