Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
python-version: '3.10'
Comment thread
ceciliastevens marked this conversation as resolved.
Outdated

- name: Ensure latest pip
run: python -m pip install --upgrade pip
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "incydr"
description = "Code42's Incydr Python SDK"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = "MIT"
keywords = []
authors = [
Expand All @@ -15,11 +15,11 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
Expand All @@ -36,7 +36,7 @@ dependencies = [
dynamic = ["version"]

[project.optional-dependencies]
cli = ["click==8.1.*", "chardet"]
cli = ["click>=8.2", "chardet"]

[project.urls]
Documentation = "https://github.com/code42/incydr_python#readme"
Expand Down Expand Up @@ -86,7 +86,7 @@ svg = "python docs/example_logging.py"


[[tool.hatch.envs.test.matrix]]
python = ["39", "310","311", "312"]
python = ["310","311", "312", "313", "314"]
[tool.hatch.envs.test]
dependencies = [
"pytest",
Expand Down
2 changes: 1 addition & 1 deletion src/_incydr_cli/rich_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def _print_options_panel(

# Column for a metavar, if we have one
metavar = Text(style=STYLE_METAVAR, overflow="fold")
metavar_str = param.make_metavar()
metavar_str = param.make_metavar(ctx=ctx)

# Do it ourselves if this is a positional argument
if (
Expand Down
Loading