We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b34b0b4 commit fee34a4Copy full SHA for fee34a4
pymoo/config.py
@@ -20,13 +20,15 @@ class Config:
20
21
@classmethod
22
def data(cls):
23
- repo = "master"
24
- if 'rc' in __version__:
25
- repo = 'release'
26
- elif 'dev' in __version__:
27
- repo = 'develop'
28
-
29
- return f"https://raw.githubusercontent.com/anyoptimization/pymoo/{repo}/pymoo/data/"
+ return "http://release.pymoo.org/_static/data/"
+
+ # repo = "master"
+ # if 'rc' in __version__:
+ # repo = 'release'
+ # elif 'dev' in __version__:
+ # repo = 'develop'
30
+ #
31
+ # return f"https://raw.githubusercontent.com/anyoptimization/pymoo/{repo}/pymoo/data"
32
33
34
# returns the directory to be used for imports
0 commit comments