File tree 4 files changed +17
-21
lines changed
4 files changed +17
-21
lines changed Original file line number Diff line number Diff line change @@ -7,17 +7,12 @@ python:
7
7
- ' 3.10'
8
8
- ' 3.11'
9
9
env :
10
- - PINT_VERSION=0.18
11
- - PINT_VERSION=0.21
12
- jobs :
13
- exclude :
14
- - python : 3.7
15
- env : PINT_VERSION=0.21
10
+ - UPGRADES="-U pint pandas"
11
+ - UPGRADES=""
16
12
install :
17
- - pip install -U -r requirements.txt
18
- - pip install Pint==$PINT_VERSION
19
- - pip install -U -r test_requirements.txt
20
- - pip install --no-deps -e .
13
+ - pip install --only-binary ':all:' -r requirements.txt
14
+ - pip install --only-binary ':all:' -r test_requirements.txt
15
+ - pip install $UPGRADES -e .
21
16
script :
22
17
- bash scripts/run_tests.sh
23
18
- cd docs; make html; cd ..;
@@ -31,7 +26,7 @@ deploy:
31
26
on :
32
27
tags : true
33
28
python : ' 3.10' # only need this to run once
34
- env : PINT_VERSION=0.21
29
+ env : UPGRADES=""
35
30
- provider : pypi
36
31
user : " CitrineInformatics"
37
32
password : " $PYPI_PASSWORD"
Original file line number Diff line number Diff line change 1
- toolz == 0.10 .0
1
+ toolz == 0.11 .0
2
2
pint == 0.18
3
3
sphinx == 4.3.0
4
4
sphinxcontrib-apidoc == 0.3.0
5
5
sphinx-rtd-theme == 1.0.0
6
- deprecation == 2.0.7
6
+ deprecation == 2.1.0
Original file line number Diff line number Diff line change 4
4
packages .append ("" )
5
5
6
6
setup (name = 'gemd' ,
7
- version = '1.14.0' ,
7
+ version = '1.14.1' ,
8
+ python_requires = '>=3.7' ,
8
9
url = 'http://github.com/CitrineInformatics/gemd-python' ,
9
10
description = "Python binding for Citrine's GEMD data model" ,
10
11
author = 'Citrine Informatics' ,
22
23
'tests.units' : ['test_units.txt' ]
23
24
},
24
25
install_requires = [
25
- "toolz>=0.10 .0,<1" ,
26
- "pint>=0.18,<0.22 " ,
27
- "deprecation>=2.0.7 ,<3"
26
+ "toolz>=0.11 .0,<1" ,
27
+ "pint>=0.18,<1 " ,
28
+ "deprecation>=2.1.0 ,<3"
28
29
],
29
30
extras_require = {
30
31
"tests" : [
31
32
"pytest>=7.3.1,<8"
32
33
],
33
- "gemd .demo.tests " : [
34
- "pandas>=1.3.5,<2 "
34
+ "tests .demo" : [
35
+ "pandas>=1.3.5,<3 "
35
36
],
36
- "gemd .entity.bounds.tests " : [
37
+ "tests .entity.bounds" : [
37
38
"numpy"
38
39
]
39
40
},
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ flake8==3.7.8
2
2
flake8-docstrings==1.3.1
3
3
pytest==7.3.1
4
4
pytest-cov==4.0.0
5
- pandas>=1.3.5,<2
5
+ pandas>=1.3.5,<=1.5.0
6
6
derp==0.1.1
You can’t perform that action at this time.
0 commit comments