Skip to content

Commit 2ae281d

Browse files
authored
Merge pull request #100 from EconForge/python_3.10
Python 3.10
2 parents 7bdf816 + 9d3cba1 commit 2ae281d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/bulid_doc.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout master
14-
uses: actions/checkout@v1
14+
uses: actions/checkout@v3
1515

16-
- name: Set up Python 3.7
17-
uses: actions/setup-python@v1
16+
- name: Set up Python 3.8
17+
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.7
19+
python-version: 3.8
2020

2121
- name: Install Poetry
2222
uses: Gr1N/setup-poetry@v7

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [ '3.7', '3.8', '3.9', '3.10']
12+
python-version: [ '3.8', '3.9', '3.10']
1313

1414
name: Test Interpolation.py (Python ${{ matrix.python-version }})
1515
steps:

.github/workflows/publish-to-test-pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@master
16-
- name: Set up Python 3.7
17-
uses: actions/setup-python@v1
16+
- name: Set up Python 3.8
17+
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.7
19+
python-version: 3.8
2020

2121
- name: Install Poetry
2222
uses: Gr1N/setup-poetry@v4

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ maintainers = [
1414
license = "BSD-2-Clause"
1515

1616
[tool.poetry.dependencies]
17-
python = ">=3.7, <3.11"
17+
python = ">=3.8, <3.11"
1818
numba = ">=0.47"
19-
numpy = "^1.22.1"
19+
numpy = "^1.22.2"
2020
tempita = "^0.5.2"
2121
scipy = "^1.4.1"
2222
packaging = "^21.3"

0 commit comments

Comments
 (0)