Skip to content

Commit

Permalink
downgrade numpy to support py 3.7 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
jychen7 authored Jan 31, 2022
1 parent 0d004af commit 1088773
Show file tree
Hide file tree
Showing 6 changed files with 119 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.7", "3.8", "3.9"]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,12 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.7", "3.8", "3.9"]

steps:
- uses: actions/checkout@v2
Expand Down
137 changes: 111 additions & 26 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ classifiers = [
include = ["LICENSE"]

[tool.poetry.dependencies]
python = "^3.8"
python = ">=3.7,<3.10"
sqloxide = "0.1.13"
google-cloud-bigtable = "2.4.0"
pyarrow = "6.0.1"
datafusion = "0.4.0"
# specify numpy 1.21.5 for python 3.7
# as of 2022-01, latest numpy 1.22.1 only supports python >=3.8
numpy = "1.21.5"

[tool.poetry.dev-dependencies]
pytest = "^5.2"
Expand Down

0 comments on commit 1088773

Please sign in to comment.