Skip to content

Commit

Permalink
Add support down to py3.6
Browse files Browse the repository at this point in the history
Update ci.yml dependencies
Update pyproject.toml to add support down to 3.6
  • Loading branch information
jacomago committed Jun 17, 2024
1 parent 8d10aaa commit 181c056
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ on:
jobs:
test:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=59.0"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -10,7 +10,7 @@ authors = [
]
description = "Python ChannelFinder Client Lib"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand All @@ -30,4 +30,4 @@ Issues = "https://github.com/ChannelFinderService/pyCFClient/issues"

[project.scripts]
cf-update-ioc = "channelfinder.cfUpdate.CFUpdateIOC:main"
cf-monitor-test = "channelfinder.cfMonitorTest:main"
cf-monitor-test = "channelfinder.cfMonitorTest:main"

0 comments on commit 181c056

Please sign in to comment.