Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update code from python2 to python3.3.6 #81

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pyevolve/Consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,13 +366,13 @@


"""
import Scaling
import Selectors
import Initializators
import Mutators
import Crossovers
from . import Scaling
from . import Selectors
from . import Initializators
from . import Mutators
from . import Crossovers
import logging
from GTree import GTreeGP
from .GTree import GTreeGP

# Required python version 2.5+
CDefPythonRequire = (2, 5)
Expand Down
Loading