Skip to content

Commit

Permalink
Merge pull request #76 from Axelrod-Python/new_implementations
Browse files Browse the repository at this point in the history
New implementations
  • Loading branch information
meatballs authored Mar 15, 2018
2 parents f652e16 + 56c605b commit f1b0990
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.3
current_version = 0.4.4
commit = True
tag = True

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

v0.4.4 (2018-03-15)
-------------------

* Tag K66R as implemented by Mikkelson

v0.4.3 (2018-02-07)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
axelrod>=4.0.0
axelrod>=4.1.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def read(*names, **kwargs):

setup(
name='axelrod-fortran',
version='0.4.3',
version='0.4.4',
license='MIT license',
description='Python wrapper for strategies originally written in Fortran',
long_description='%s\n%s' % (
Expand All @@ -54,7 +54,7 @@ def read(*names, **kwargs):
'Topic :: Utilities',
],
install_requires=[
'axelrod >= 4.0.0',
'axelrod >= 4.1.0',
],
python_requires=">=3.5",
)
2 changes: 1 addition & 1 deletion src/axelrod_fortran/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.3"
__version__ = "0.4.4"

from .player import Player
from .strategies import (all_strategies, characteristics,
Expand Down
2 changes: 1 addition & 1 deletion src/axelrod_fortran/strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
'author': 'Mark F Batell',
'original_rank': 47},
'k66r': {
'axelrod-python_class': None,
'axelrod-python_class': axl.Mikkelson,
'stochastic': False,
'author': 'Ray Mikkelson',
'original_rank': 20},
Expand Down

0 comments on commit f1b0990

Please sign in to comment.