Skip to content

Commit

Permalink
Merge pull request #17 from MikeMoore63/feat/fix__version__
Browse files Browse the repository at this point in the history
chore: bump version expand tox to python 3.13
  • Loading branch information
MikeMoore63 authored Jan 3, 2025
2 parents 01e5f16 + 83461cb commit 5f2418a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python: ["3.9", "3.10", "3.11","3.12"]
python: ["3.9", "3.10", "3.11","3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "spdx_matcher" # Required
#
# For a discussion on single-sourcing the version, see
# https://packaging.python.org/guides/single-sourcing-package-version/
version = "0.0.15" # Required
version = "0.1.0" # Required

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand All @@ -19,7 +19,7 @@ readme = "README.md" # Optional
# 'Programming Language' classifiers above, 'pip install' will check this
# and refuse to install the project if the version does not match. See
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
requires-python = ">=3.8"
requires-python = ">=3.9"

# This is either text indicating the license for the distribution, or a file
# that contains the license
Expand Down Expand Up @@ -71,6 +71,7 @@ classifiers = [ # Optional
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]

Expand Down Expand Up @@ -133,5 +134,5 @@ ignore = ["renovate.json"]
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
requires = ["setuptools>=75.6.0", "wheel"]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312,313}
envlist = py{39,310,311,312,313}

# Define the minimal tox version required to run;
# if the host tox is less than this the tool with create an environment and
Expand Down

0 comments on commit 5f2418a

Please sign in to comment.