Skip to content

Commit

Permalink
Add support for Python 3.11 and drop support for 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoV94 committed Jan 24, 2023
1 parent 958cd14 commit 3f52b70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.10"]
python-version: ["3.8", "3.11"]
fast-compile: [0,1]
float32: [0,1]
install-numba: [1]
Expand All @@ -85,11 +85,11 @@ jobs:
- python-version: "3.8"
fast-compile: 0
float32: 1
- python-version: "3.10"
- python-version: "3.11"
fast-compile: 1
- python-version: "3.10"
- python-version: "3.11"
float32: 1
- python-version: "3.10"
- python-version: "3.11"
part: "tests/tensor/test_math.py"
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "pytensor"
dynamic = [
'version'
]
requires-python = ">=3.7"
requires-python = ">=3.8"
authors = [
{name = "pymc-devs", email = "pymc.devs@gmail.com"}
]
Expand All @@ -34,10 +34,10 @@ classifiers = [
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

keywords = [
Expand Down

0 comments on commit 3f52b70

Please sign in to comment.