diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 1c61314c..d1a3af40 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -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 }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f3f11dc4..cbe1d783 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.2.1 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: diff --git a/newsfragments/477.break.rst b/newsfragments/477.break.rst new file mode 100644 index 00000000..ace6a742 --- /dev/null +++ b/newsfragments/477.break.rst @@ -0,0 +1 @@ +Drop support for python 3.7 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index ece6dc3c..b70595e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,6 @@ 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", @@ -24,7 +23,7 @@ classifiers = [ "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" @@ -53,22 +52,31 @@ single_file=true filename="CHANGES.rst" issue_format="`#{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"