File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,21 @@ python:
5
5
- ' 3.8'
6
6
- ' 3.9'
7
7
- ' 3.10'
8
+ env :
9
+ - PINT_VERSION=0.13
10
+ - PINT_VERSION=0.20
11
+ jobs :
12
+ exclude :
13
+ - python : 3.7
14
+ env : PINT_VERSION=0.20
8
15
install :
9
16
- pip install -U -r requirements.txt
17
+ - pip install Pint==$PINT_VERSION
10
18
- pip install -U -r test_requirements.txt
11
19
- pip install --no-deps -e .
12
20
script :
13
- - pytest --cov=gemd --cov-report term-missing:skip-covered --cov-config=tox.ini --no-cov-on-fail --cov-fail-under=100 gemd
14
21
- flake8 gemd
22
+ - pytest --cov=gemd --cov-report term-missing:skip-covered --cov-config=tox.ini --no-cov-on-fail --cov-fail-under=100 gemd
15
23
- cd docs; make html; cd ..;
16
24
- touch ./docs/_build/html/.nojekyll
17
25
- if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "main" ]; then bash ./scripts/validate-version-bump.sh; fi
@@ -24,6 +32,7 @@ deploy:
24
32
on :
25
33
tags : true
26
34
python : ' 3.7' # only need this to run once
35
+ env : PINT_VERSION=0.13
27
36
- provider : pypi
28
37
user : " CitrineInformatics"
29
38
password : " $PYPI_PASSWORD"
Original file line number Diff line number Diff line change 2
2
3
3
4
4
setup (name = 'gemd' ,
5
- version = '1.12.0 ' ,
5
+ version = '1.12.1 ' ,
6
6
url = 'http://github.com/CitrineInformatics/gemd-python' ,
7
7
description = "Python binding for Citrine's GEMD data model" ,
8
8
author = 'Citrine Informatics' ,
19
19
},
20
20
install_requires = [
21
21
"toolz>=0.10.0,<1" ,
22
- "pint>=0.13,<0.20.0 " ,
22
+ "pint>=0.13,<0.21 " ,
23
23
"deprecation>=2.0.7,<3"
24
24
],
25
25
extras_require = {
You can’t perform that action at this time.
0 commit comments