Skip to content

Commit

Permalink
Merge branch 'main' into prepare-release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariatta authored Oct 11, 2023
2 parents aead5f8 + f59f7b7 commit 5143f8a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
- run: isort --check-only --profile black .
- run: pip install --editable .
- run: mypy --ignore-missing-imports --install-types --non-interactive .
- run: shopt -s globstar && pyupgrade --py37-plus **/*.py || true
- run: shopt -s globstar && pyupgrade --py38-plus **/*.py || true
- run: safety check
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ dependencies = [
]
readme = "readme.rst"
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dynamic = ["version", "description"]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Tests are to be written using `pytest <https://docs.pytest.org/en/latest/>`_.
Setup Info
==========

Requires Python 3.7.
Requires Python 3.8+.

.. code-block:: console
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{312, 311, 310, 39, 38, 37}
py{312, 311, 310, 39, 38}
isolated_build = true

[testenv]
Expand Down

0 comments on commit 5143f8a

Please sign in to comment.