Skip to content

Commit 181b9e6

Browse files
committed
Require libdiffpy 1.3.3 or later.
1 parent d52985c commit 181b9e6

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ before_install:
6161
- $NOMC || conda create --name=testenv --yes python=${MYPYTHON_VERSION} coverage
6262
- $NOMC || conda config --add channels diffpy
6363

64-
# FIXME - remove after libdiffpy release 1.3.3
65-
- $NOMC || conda config --add channels pavoljuhas/channel/dev
66-
6764
- $NOAPT || test "${TRAVIS_OS_NAME}" = "linux" || exit $?
6865
- $NOAPT || sudo apt-get update -qq
6966
- $NOAPT || sudo apt-get install -y

conda-recipe/meta.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ requirements:
2020
- python
2121
- setuptools
2222
- numpy 1.9.2
23-
# FIXME - adjust for libdiffpy 1.3.3
24-
- libdiffpy >=1.3.2.post24
23+
- libdiffpy >=1.3.3,1.3.*
2524
- pycifrw
2625
- diffpy.structure
2726
- scons
@@ -30,8 +29,7 @@ requirements:
3029
- python
3130
- setuptools
3231
- numpy >=1.9.2
33-
# FIXME - adjust for libdiffpy 1.3.3
34-
- libdiffpy >=1.3.2.post24
32+
- libdiffpy >=1.3.3,1.3.*
3533
- pycifrw
3634
- diffpy.structure
3735
- pyobjcryst 2.0*

srrealmodule/srreal_converters.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434
#include <diffpy/srreal/QuantityType.hpp>
3535
#include <diffpy/version.hpp>
3636

37-
// FIXME - adjust for libdiffpy 1.3.3
38-
#if DIFFPY_VERSION < 1003002024
39-
#error "diffpy.srreal requires libdiffpy 1.3.2.post24 or later."
37+
#if DIFFPY_VERSION < 1003003000
38+
#error "diffpy.srreal requires libdiffpy 1.3.3 or later."
4039
#endif
4140

4241
/// Conversion function that supports implicit conversions in

0 commit comments

Comments
 (0)