Skip to content

Commit

Permalink
Remove support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLark86 committed Jun 12, 2024
1 parent 6ef550d commit d686005
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nose-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.10']
python-version: ['3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.10']
python-version: ['3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -43,7 +43,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.10']
python-version: ['3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -64,7 +64,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.10']
python-version: ['3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -87,7 +87,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.10']
python-version: ['3.10']

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ exclude-dir = prod_api/tests/

[mypy]
mypy_path = ./stubs
python_version = 3.8
python_version = 3.10
warn_unused_configs = True
allow_untyped_globals = True
exclude = env
exclude = env|src

[mypy-nose.*]
ignore_missing_imports = True
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,15 @@

setup(
name="Superdesk-Core",
version="2.7.0rc5",
version="3.0.0.dev0",
description="Superdesk Core library",
long_description=LONG_DESCRIPTION,
author="petr jasek",
author_email="[email protected]",
url="https://github.com/superdesk/superdesk-core",
license="GPLv3",
platforms=["any"],
python_requires=">=3.10",
packages=find_packages(exclude=["tests*", "features*"]),
package_data=package_data,
include_package_data=True,
Expand Down

0 comments on commit d686005

Please sign in to comment.