Skip to content

Commit

Permalink
Allow package to be installed with more recent Python versions
Browse files Browse the repository at this point in the history
This also bumps the Python versions used in CI to current versions.
  • Loading branch information
Tenzer committed Sep 6, 2024
1 parent 842997d commit 5ac7770
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]
workflow_dispatch:
inputs: {}

Expand All @@ -14,9 +14,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.11", "3.12"]

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checking out repo
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
path: ".coverage.*"

coverage:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: build
steps:
- name: Check out the repository
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.12"

- name: Install and upgrade dependencies
run: |
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
setup(name="pipelinewise-singer-python",
version='2.0.1',
description="Singer.io utility library - PipelineWise compatible",
python_requires=">=3.7.0, <3.11",
long_description=long_description,
long_description_content_type="text/markdown",
author="TransferWise",
Expand Down

0 comments on commit 5ac7770

Please sign in to comment.