diff --git a/html5lib/__init__.py b/html5lib/__init__.py
index 3f17d83c..bee263a0 100644
--- a/html5lib/__init__.py
+++ b/html5lib/__init__.py
@@ -22,4 +22,4 @@
"getTreeWalker", "serialize"]
# this has to be at the top level, see how setup.py parses this
-__version__ = "0.99999999-dev"
+__version__ = "0.9999999.1"
diff --git a/setup.py b/setup.py
index 034bafbc..8d549325 100644
--- a/setup.py
+++ b/setup.py
@@ -65,8 +65,8 @@
# A conditional extra will only install these items when the extra is
# requested and the condition matches.
- "datrie:python_implementation == 'CPython'": ["datrie"],
- "lxml:python_implementation == 'CPython'": ["lxml"],
+ "datrie": ["datrie"],
+ "lxml": ["lxml"],
# Standard extras, will be installed when the extra is requested.
"genshi": ["genshi"],
@@ -76,7 +76,6 @@
# the all extra is requested, and it extends it with a conditional
# extra that will be installed whenever the condition matches and the
# all extra is requested.
- "all": ["genshi", "charade"],
- "all:python_implementation == 'CPython'": ["datrie", "lxml"],
+ "all": ["genshi", "charade", "datrie", "lxml"],
},
)