Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit 08e66c4

Browse files
committed
add support and tests for python v3.7 and v3.8
1 parent 3ae342d commit 08e66c4

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

.circleci/config.yml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
version: 1
1+
version: 2
2+
3+
workflows:
4+
version: 2
5+
test:
6+
jobs:
7+
- test-3.6
8+
- test-3.7
9+
- test-3.8
10+
211
jobs:
3-
build:
12+
test-3.6: &test-template
413
docker:
514
- image: circleci/python:3.6
615

@@ -31,6 +40,12 @@ jobs:
3140
. venv/bin/activate
3241
pytest tests
3342
34-
- store_artifacts:
35-
path: test-reports
36-
destination: test-reports
43+
test-3.7:
44+
<<: *test-template
45+
docker:
46+
- image: circleci/python:3.7
47+
48+
test-3.8:
49+
<<: *test-template
50+
docker:
51+
- image: circleci/python:3.8

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,13 @@
2424
author_email="kelvin@firststreet.org",
2525
license="MIT",
2626
classifiers=[
27+
"License :: OSI Approved :: MIT License",
28+
"Topic :: Scientific/Engineering",
29+
"Topic :: Scientific/Engineering :: Hydrology",
2730
"Programming Language :: Python :: 3",
2831
"Programming Language :: Python :: 3.6",
32+
"Programming Language :: Python :: 3.7",
33+
"Programming Language :: Python :: 3.8",
2934
],
3035

3136
# Package info

0 commit comments

Comments
 (0)