Skip to content

Commit 84ea438

Browse files
committed
Bump ceiling on Pint version to 0.20
1 parent bd4f914 commit 84ea438

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ python:
55
- '3.8'
66
- '3.9'
77
- '3.10'
8+
env:
9+
- PINT_VERSION=0.13
10+
- PINT_VERSION=0.20
811
install:
912
- pip install -U -r requirements.txt
13+
- pip install Pint==$PINT_VERSION
1014
- pip install -U -r test_requirements.txt
1115
- pip install --no-deps -e .
1216
script:
13-
- pytest --cov=gemd --cov-report term-missing:skip-covered --cov-config=tox.ini --no-cov-on-fail --cov-fail-under=100 gemd
1417
- flake8 gemd
18+
- pytest --cov=gemd --cov-report term-missing:skip-covered --cov-config=tox.ini --no-cov-on-fail --cov-fail-under=100 gemd
1519
- cd docs; make html; cd ..;
1620
- touch ./docs/_build/html/.nojekyll
1721
- if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "main" ]; then bash ./scripts/validate-version-bump.sh; fi

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
setup(name='gemd',
5-
version='1.12.0',
5+
version='1.12.1',
66
url='http://github.com/CitrineInformatics/gemd-python',
77
description="Python binding for Citrine's GEMD data model",
88
author='Citrine Informatics',
@@ -19,7 +19,7 @@
1919
},
2020
install_requires=[
2121
"toolz>=0.10.0,<1",
22-
"pint>=0.13,<0.20.0",
22+
"pint>=0.13,<0.21",
2323
"deprecation>=2.0.7,<3"
2424
],
2525
extras_require={

0 commit comments

Comments
 (0)