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
Update ci.yml to test down to 3.6
  • Loading branch information
jacomago committed Jun 17, 2024
1 parent 8d10aaa commit ce51f03
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pyCFClient

A python client library for ChannelFinder. Requires python >= 3.8.
A python client library for ChannelFinder.

## Configuration

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "channelfinder"
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 @@ -22,12 +22,12 @@ dependencies = [
"urllib3>=1.22"
]
[project.optional-dependencies]
test = ["pytest", "testcontainers==3.7.1"]
test = ["pytest", "testcontainers>=3.7.0,<4"]

[project.urls]
Homepage = "https://github.com/ChannelFinderService/pyCFClient"
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 ce51f03

Please sign in to comment.