summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2023-10-10 21:34:59 -0700
committerGitHub <noreply@github.com>2023-10-11 12:34:59 +0800
commit6332e18b48482f29aa96290face13e9b3b7277ea (patch)
tree105077b23b003c3de96dadec1a672f525dca2258 /.github
parentf157f3f72ee388970861c31557ba624663d1a2c1 (diff)
Drop python 3.7, add 3.12 (#1426)
* Fix deprecation. * Drop python 3.7 and add 3.12. * Bump pendulum. * Changelog. * Update gh actions. * See if things pass without this scenario. * Skip failing scenarios in 3.12.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8ac19111..d9698ef4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
- python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
services:
postgres:
@@ -31,10 +31,10 @@ jobs:
--health-retries 5
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}