Skip to content

Commit

Permalink
Remove Python 3.8 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnmabus committed Oct 13, 2023
1 parent 8789db0 commit 02bee40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9']
python-version: ['3.9', '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "scikit-fda"
description = "Functional Data Analysis Python package."
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords = [
"functional data",
Expand All @@ -20,7 +20,7 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
Expand Down
2 changes: 1 addition & 1 deletion skfda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
concatenate as concatenate,
)

__version__ = "0.9.dev1"
__version__ = "0.9.1.dev1"

0 comments on commit 02bee40

Please sign in to comment.