Skip to content

Commit bade4c3

Browse files
committed
Merge branch 'main' into fix_snippet_n_windows
2 parents f907e39 + 900b10c commit bade4c3

File tree

4 files changed

+11
-20
lines changed

4 files changed

+11
-20
lines changed

.github/workflows/github-actions.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,9 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ['3.7']
13+
python-version: ['3.8']
1414
steps:
1515
- uses: actions/checkout@v3
16-
- name: Fix Broken Python 3.7.17 (no _bz2 module)
17-
run: rm -rf $RUNNER_TOOL_CACHE/Python/3.7.17
18-
shell: bash
1916
- name: Set Up Python
2017
uses: actions/setup-python@v4
2118
with:
@@ -55,12 +52,9 @@ jobs:
5552
strategy:
5653
matrix:
5754
os: [ubuntu-latest, macos-latest, windows-latest]
58-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
55+
python-version: ['3.8', '3.9', '3.10', '3.11']
5956
steps:
6057
- uses: actions/checkout@v3
61-
- name: Fix Broken Python 3.7.17 (no _bz2 module)
62-
run: rm -rf $RUNNER_TOOL_CACHE/Python/3.7.17
63-
shell: bash
6458
- name: Set Up Python
6559
uses: actions/setup-python@v4
6660
with:
@@ -109,12 +103,9 @@ jobs:
109103
strategy:
110104
matrix:
111105
os: [ubuntu-latest, macos-latest, windows-latest]
112-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
106+
python-version: ['3.8', '3.9', '3.10', '3.11']
113107
steps:
114108
- uses: actions/checkout@v3
115-
- name: Fix Broken Python 3.7.17 (no _bz2 module)
116-
run: rm -rf $RUNNER_TOOL_CACHE/Python/3.7.17
117-
shell: bash
118109
- name: Set Up Python
119110
uses: actions/setup-python@v4
120111
with:

environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
channels:
22
- conda-forge
33
dependencies:
4-
- python>=3.7
5-
- numpy>=1.17
4+
- python>=3.8
5+
- numpy>=1.18
66
- scipy>=1.5
7-
- numba>=0.54
7+
- numba>=0.55.2
88
- pandas>=0.20.0
99
- flake8>=3.7.7
1010
- flake8-docstrings>=1.5.0

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
numpy>=1.17
1+
numpy>=1.18
22
scipy>=1.5
3-
numba>=0.54
3+
numba>=0.55.2

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def get_extras_require():
2929

3030
configuration = {
3131
"version": "1.11.1",
32-
"python_requires=": ">=3.7",
32+
"python_requires=": ">=3.8",
3333
"author": "Sean M. Law",
3434
"author_email": "seanmylaw@gmail.com",
3535
"description": (
@@ -50,15 +50,15 @@ def get_extras_require():
5050
"Operating System :: POSIX",
5151
"Operating System :: Unix",
5252
"Operating System :: MacOS",
53-
"Programming Language :: Python :: 3.7",
53+
"Programming Language :: Python :: 3.8",
5454
],
5555
"keywords": "time series matrix profile motif discord",
5656
"url": "https://github.com/TDAmeritrade/stumpy",
5757
"maintainer": "Sean M. Law",
5858
"maintainer_email": "seanmylaw@gmail.com",
5959
"license": "3-clause BSD License",
6060
"packages": ["stumpy"],
61-
"install_requires": ["numpy >= 1.17", "scipy >= 1.5", "numba >= 0.54"],
61+
"install_requires": ["numpy >= 1.18", "scipy >= 1.5", "numba >= 0.55.2"],
6262
"ext_modules": [],
6363
"cmdclass": {},
6464
"tests_require": ["pytest"],

0 commit comments

Comments
 (0)