Skip to content

Commit 8f9e2ee

Browse files
authored
Merge pull request #164 from pacificclimate/i163-resolve-dependencies
I163 resolve dependencies
2 parents 941f804 + 8253999 commit 8f9e2ee

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-20.04
99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8]
11+
python-version: [3.7, 3.8]
1212

1313
steps:
1414
- uses: actions/checkout@v2

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
ce-dataprep==0.8.6
1+
ce-dataprep==0.8.8
22
cftime==1.1.3
33
click==7.1.2
4-
jinja2>=2.11.3
4+
jinja2>=2.11.3,<3.1.0
55
netCDF4==1.5.6
66
psutil==5.7.0
77
pywps==4.2.9

requirements_dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ bumpversion
1111
twine
1212
# Changing dependencies above this comment will create merge conflicts when updating the cookiecutter template with cruft. Add extra requirements below this line.
1313
cruft
14+
nbclient~=0.5.10
1415
black==19.10b0
1516
jupyterlab==2.1.5
1617
ipywidgets==7.5.1

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
here = os.path.abspath(os.path.dirname(__file__))
1111
README = open(os.path.join(here, "README.md")).read()
1212
CHANGES = open(os.path.join(here, "CHANGES.md")).read()
13+
REQUIRES_PYTHON = ">=3.7.0"
1314

1415
about = {}
1516
with open(os.path.join(here, "thunderbird", "__version__.py"), "r") as f:
@@ -27,9 +28,8 @@
2728
"Programming Language :: Python",
2829
"Natural Language :: English",
2930
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.5",
31-
"Programming Language :: Python :: 3.6",
3231
"Programming Language :: Python :: 3.7",
32+
"Programming Language :: Python :: 3.8",
3333
"Topic :: Scientific/Engineering :: Atmospheric Science",
3434
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
3535
]
@@ -42,6 +42,7 @@
4242
author=about["__author__"],
4343
author_email=about["__email__"],
4444
url="https://github.com/pacificclimate/thunderbird",
45+
python_requires=REQUIRES_PYTHON,
4546
classifiers=classifiers,
4647
license="GNU General Public License v3",
4748
keywords="wps pywps birdhouse thunderbird",

0 commit comments

Comments
 (0)