File tree 7 files changed +7
-7
lines changed
7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 23
23
# Install GMT
24
24
- name : Install GMT
25
25
shell : bash -l {0}
26
- run : conda install -c conda-forge gmt=6.1.0
26
+ run : conda install -c conda-forge gmt=6.1.1
27
27
28
28
# Download remote files
29
29
- name : Download remote data
Original file line number Diff line number Diff line change 77
77
requirements_file=full-conda-requirements.txt
78
78
cat requirements.txt requirements-dev.txt > $requirements_file
79
79
cat << EOF >> $requirements_file
80
- gmt=6.1.0
80
+ gmt=6.1.1
81
81
make
82
82
codecov
83
83
EOF
Original file line number Diff line number Diff line change 26
26
# The file with the listed requirements to be installed by conda
27
27
- CONDA_REQUIREMENTS=requirements.txt
28
28
- CONDA_REQUIREMENTS_DEV=requirements-dev.txt
29
- - CONDA_INSTALL_EXTRA="codecov twine gmt=6.1.0 "
29
+ - CONDA_INSTALL_EXTRA="codecov twine gmt=6.1.1 "
30
30
# These variables control which actions are performed in a build
31
31
- DEPLOY=false
32
32
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Which GMT?
31
31
PyGMT requires Generic Mapping Tools (GMT) version 6 as a minimum, which is the latest
32
32
released version that can be found at
33
33
the `GMT official site <https://www.generic-mapping-tools.org >`__.
34
- We need the latest GMT (>=6.1.0 ) since there are many changes being made to GMT itself in
34
+ We need the latest GMT (>=6.1.1 ) since there are many changes being made to GMT itself in
35
35
response to the development of PyGMT, mainly the new
36
36
`modern execution mode <https://docs.generic-mapping-tools.org/latest/cookbook/introduction.html#modern-and-classic-mode >`__.
37
37
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ channels:
5
5
dependencies :
6
6
- python=3.7
7
7
- pip
8
- - gmt=6.1.0
8
+ - gmt=6.1.1
9
9
- numpy
10
10
- pandas
11
11
- xarray
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
3
"build:miniconda" : " curl -o ~/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash ~/miniconda.sh -b -p $HOME/miniconda" ,
4
- "build:pygmt" : " conda env create -f environment.yml && source activate pygmt && conda install -c conda-forge -y gmt==6.1.0 && make install" ,
4
+ "build:pygmt" : " conda env create -f environment.yml && source activate pygmt && conda install -c conda-forge -y gmt==6.1.1 && make install" ,
5
5
"build:docs" : " source activate pygmt && cd doc && make all && mv _build/html ../public" ,
6
6
"build" : " export PATH=$HOME/miniconda/bin:$PATH && npm run build:miniconda && npm run build:pygmt && npm run build:docs"
7
7
}
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ class Session:
119
119
"""
120
120
121
121
# The minimum version of GMT required
122
- required_version = "6.1.0 "
122
+ required_version = "6.1.1 "
123
123
124
124
@property
125
125
def session_pointer (self ):
You can’t perform that action at this time.
0 commit comments