File tree 7 files changed +27
-15
lines changed
7 files changed +27
-15
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ required for building a binstar package:
10
10
* ` build.sh ` - Linux/OSX batch file called in the build process
11
11
12
12
Two other helper files are included to automate building across
13
- Python 2.7 and 3.5 .
13
+ Python 2.7, 3.5 and 3.6 .
14
14
15
15
* ` binstar_windows.bat `
16
16
* ` binstar_linux.sh `
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : arch
3
- version : " 4.0 "
3
+ version : " 4.1 "
4
4
5
5
source :
6
6
git_url : https://github.com/bashtage/arch.git
@@ -20,6 +20,8 @@ requirements:
20
20
- statsmodels
21
21
- matplotlib
22
22
- nbconvert
23
+ - nbformat
24
+ - numba
23
25
- pywin32 # [win]
24
26
25
27
run :
@@ -32,13 +34,16 @@ requirements:
32
34
- patsy
33
35
- statsmodels
34
36
- matplotlib
37
+ - numba
35
38
- pywin32 # [win]
36
39
40
+
37
41
test :
38
- imports :
39
- - arch
40
42
requires :
41
43
- pytest
44
+ test :
45
+ run_test.sh # [unix]
46
+ run_test.bat # [win]
42
47
43
48
about :
44
49
home : https://github.com/bashtage/arch
Original file line number Diff line number Diff line change
1
+ set NUMBER_OF_PROCESSORS = 1
2
+ pytest -v --pyargs arch
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ export QT_QPA_PLATFORM=offscreen
4
+ pytest -v --pyargs arch
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ conda install anaconda-client conda-build --yes
3
4
conda config --set anaconda_upload yes
4
5
5
6
cd ..
6
7
7
- export VERSION=3.2
8
+ export VERSION=4.1
8
9
# # detect OS
9
10
if [ " $( uname) " == " Darwin" ]; then
10
11
export OS=osx-64
11
12
else
12
13
export OS=linux-64
13
14
fi
14
15
15
- sudo Xvfb :99 -nolisten tcp -fbdir /var/run &
16
+ # No longer needed
17
+ # # sudo Xvfb :99 -nolisten tcp -fbdir /var/run &
16
18
17
19
# # declare Python and Numpy Versions
18
- declare -a PY_VERSIONS=( " 27" " 35" )
19
- declare -a NPY_VERSIONS=( " 110 " " 111 " )
20
+ declare -a PY_VERSIONS=( " 27" " 35" " 36 " )
21
+ declare -a NPY_VERSIONS=( " 111 " " 112 " )
20
22
21
23
# # Loop across Python and Numpy
22
24
for PY in " ${PY_VERSIONS[@]} "
Original file line number Diff line number Diff line change @@ -3,12 +3,15 @@ Setlocal EnableDelayedExpansion
3
3
REM Get current directory
4
4
SET CURRENT_WORKING_DIR = %~dp0
5
5
REM Python and NumPy versions
6
- set VERSION = 3.2
7
- set PY_VERSION = 27 35
8
- set NPY_VERSION = 110 111
6
+ set VERSION = 4.1
7
+ set PY_VERSION = 27 35 36
8
+ set NPY_VERSION = 111 112
9
9
10
+
11
+ conda install anaconda-client conda-build --yes
10
12
conda config --set anaconda_upload yes
11
13
14
+
12
15
(for %%P in (%PY_VERSION% ) do (
13
16
IF %%P == 27 (
14
17
call python2_setup.bat
You can’t perform that action at this time.
0 commit comments