Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New python versions #38

Merged
merged 7 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/docs test.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

setuptools.setup(
name="tsod",
version="0.1.3",
version="0.1.4",
install_requires=["pandas>=1.0.0", "numba", "joblib"],
extras_require={
"dev": ["pytest>=6.2.1", "sphinx", "sphinx-book-theme"],
"ml": ["pyod", "tensorflow==2.4.1"], # Pin tensorflow version temporarily
"ml": ["pyod", "tensorflow"],
"test": ["pytest>=6.2.1"],
},
author="Henrik Andersson",
Expand All @@ -27,9 +27,10 @@
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10", # wait for numba
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
Expand Down
2 changes: 2 additions & 0 deletions tsod/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
RollingStandardDeviationDetector,
)
from .base import load

__version__ = "0.1.4"