-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: BJ Hargrave <[email protected]>
- Loading branch information
1 parent
fb19e0f
commit 0c060f3
Showing
4 changed files
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,6 @@ jobs: | |
strategy: | ||
matrix: | ||
python: | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,13 @@ authors = [{ name = "InstructLab", email = "[email protected]" }] | |
description = "InstructLab Taxonomy Schema" | ||
readme = "README.md" | ||
license = { text = "Apache-2.0" } | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.10" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
|
@@ -34,11 +33,11 @@ version_file = "src/instructlab/schema/_version.py" | |
local_scheme = "no-local-version" # do not include +gREV local version, required for Test PyPI upload | ||
|
||
[tool.mypy] | ||
python_version = "3.9" | ||
python_version = "3.10" | ||
exclude = ["^src/instructlab/schema/_version\\.py$"] | ||
|
||
[tool.ruff] | ||
target-version = "py39" | ||
target-version = "py310" | ||
src = ["src", "tests"] | ||
extend-exclude = ["src/instructlab/schema/_version.py"] | ||
|
||
|
@@ -55,7 +54,7 @@ select = [ | |
] | ||
|
||
[tool.pylint.main] | ||
py-version = "3.9" | ||
py-version = "3.10" | ||
source-roots = ["src", "tests"] | ||
ignore = ["_version.py"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,4 +60,3 @@ python = | |
3.12 = py312-unit | ||
3.11 = py311-unit | ||
3.10 = py310-unit | ||
3.9 = py39-unit |