Skip to content

Commit

Permalink
🍪 ➖ Drop Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
TeoZosa committed Apr 2, 2022
1 parent fb971c0 commit ea546a1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING_GUIDE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ How to set up your development environment
Invoking ``make`` without any arguments will display
auto-generated documentation on available commands.

Make sure you have Python 3.7+ and Poetry_ installed and configured.
Make sure you have Python 3.8+ and Poetry_ installed and configured.

Install the package with development requirements:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.8", "3.9"]
library-type: ["pure_python"]

name: icontract benchmarks for Python ${{ matrix.python-version }} (${{ matrix.os }}) [${{ matrix.library-type }}]
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
skip_missing_interpreters = true
isolated_build = true
envlist =
py3{7,8,9}
py3{8,9}

[base_configs]
wheel = false
Expand All @@ -28,7 +28,7 @@ commands = pytest \
wheel = {[base_configs]wheel}
parallel_show_output = {[base_configs]parallel_show_output}

[testenv:py3{7,8,9}-benchmark-{pure_python}]
[testenv:py3{8,9}-benchmark-{pure_python}]
description = Run performance testing under {basepython}
setenv =
{[testenv]setenv}
Expand Down

0 comments on commit ea546a1

Please sign in to comment.