Skip to content

Commit 4f6e8bf

Browse files
Merge pull request #1225 from Axelrod-Python/marcharper-patch-2
Fix citations link on readme
2 parents 5186d3f + 4355ac9 commit 4f6e8bf

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Publications
124124
------------
125125

126126
You can find a list of publications that make use of or cite the library
127-
in [citations](https://github.com/Axelrod-Python/Axelrod/blob/master/citations.md).
127+
on the `citations <https://github.com/Axelrod-Python/Axelrod/blob/master/citations.md>`_ page.
128128

129129
Contributors
130130
------------

appveyor.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
environment:
22
matrix:
3-
- PYTHON_VERSION: "3.5"
4-
MINICONDA: "C:\\Miniconda35"
5-
- PYTHON_VERSION: "3.6"
6-
MINICONDA: "C:\\Miniconda36"
3+
- PYTHON: "C:\\Python35"
4+
- PYTHON: "C:\\Python36"
75
install:
8-
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
9-
- "conda config --set always_yes yes --set changeps1 no"
10-
- "conda update -q conda"
11-
- "conda create -q -n test-environment python=%PYTHON_VERSION% scipy>=0.19.0 numpy>=1.9.2"
12-
- "activate test-environment"
13-
- "python -m pip install -r requirements.txt"
6+
- "%PYTHON%\\python.exe --version"
7+
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
148
build: off
159
test_script:
16-
- "python -m unittest discover"
17-
- "python doctests.py"
18-
- "python setup.py install"
10+
- "%PYTHON%\\python.exe -m unittest discover"
11+
- "%PYTHON%\\python.exe doctests.py"
12+
- "%PYTHON%\\python.exe setup.py install"

0 commit comments

Comments
 (0)