Skip to content

Commit f1b0990

Browse files
authored
Merge pull request #76 from Axelrod-Python/new_implementations
New implementations
2 parents f652e16 + 56c605b commit f1b0990

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.3
2+
current_version = 0.4.4
33
commit = True
44
tag = True
55

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
v0.4.4 (2018-03-15)
5+
-------------------
6+
7+
* Tag K66R as implemented by Mikkelson
8+
49
v0.4.3 (2018-02-07)
510
-------------------
611

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
axelrod>=4.0.0
1+
axelrod>=4.1.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def read(*names, **kwargs):
2727

2828
setup(
2929
name='axelrod-fortran',
30-
version='0.4.3',
30+
version='0.4.4',
3131
license='MIT license',
3232
description='Python wrapper for strategies originally written in Fortran',
3333
long_description='%s\n%s' % (
@@ -54,7 +54,7 @@ def read(*names, **kwargs):
5454
'Topic :: Utilities',
5555
],
5656
install_requires=[
57-
'axelrod >= 4.0.0',
57+
'axelrod >= 4.1.0',
5858
],
5959
python_requires=">=3.5",
6060
)

src/axelrod_fortran/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.4.3"
1+
__version__ = "0.4.4"
22

33
from .player import Player
44
from .strategies import (all_strategies, characteristics,

src/axelrod_fortran/strategies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
'author': 'Mark F Batell',
183183
'original_rank': 47},
184184
'k66r': {
185-
'axelrod-python_class': None,
185+
'axelrod-python_class': axl.Mikkelson,
186186
'stochastic': False,
187187
'author': 'Ray Mikkelson',
188188
'original_rank': 20},

0 commit comments

Comments
 (0)