Skip to content

Commit

Permalink
Drop support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Jul 31, 2023
1 parent 2ce0c39 commit a54a813
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", pypy-3.8]
python-version: [3.8, 3.9, "3.10", "3.11", pypy-3.8]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: fizyk/actions-reuse/.github/workflows/[email protected]
with:
pipenv-install-options: "--skip-lock"
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]'
python-versions: '["3.8", "3.9", "3.10", "3.11", "pypy-3.8"]'
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
benchmark:
Expand Down
28 changes: 18 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">= 3.7"
requires-python = ">= 3.8"

[project.urls]
"Source" = "https://github.com/ClearcodeHQ/matchbox"
Expand Down Expand Up @@ -53,22 +52,31 @@ single_file=true
filename="CHANGES.rst"
issue_format="`#{issue} <https://github.com/ClearcodeHQ/matchbox/issues/{issue}>`_"

[tool.towncrier.fragment.feature]
name = "Features"
[[tool.towncrier.type]]
directory = "break"
name = "Breaking changes"
showcontent = true

[tool.towncrier.fragment.bugfix]
name = "Bugfixes"
[[tool.towncrier.type]]
directory = "depr"
name = "Deprecations"
showcontent = true

[tool.towncrier.fragment.break]
name = "Breaking changes"
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true

[tool.towncrier.fragment.misc]
name = "Miscellaneus"
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bugfixes"
showcontent = true

[[tool.towncrier.type]]
directory = "misc"
name = "Miscellaneus"
showcontent = false

[tool.pytest.ini_options]
filterwarnings = "error"
xfail_strict = "True"
Expand Down

0 comments on commit a54a813

Please sign in to comment.