summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxi <xi@18f92427-320e-0410-9341-c67f048884a3>2009-08-29 22:37:18 +0000
committerxi <xi@18f92427-320e-0410-9341-c67f048884a3>2009-08-29 22:37:18 +0000
commit27c97f05195b6461743eba45c79befcac51663d7 (patch)
tree97d1ea1033c306c99a6396b7116cc3c9c1b843e7
parent0832d0a69522a1b009801bd50fcb4b144691b1ca (diff)
downloadpyyaml-27c97f05195b6461743eba45c79befcac51663d7.tar.gz
Added a note that Python 3.1 is supported.
git-svn-id: http://svn.pyyaml.org/pyyaml/trunk@356 18f92427-320e-0410-9341-c67f048884a3
-rw-r--r--setup.cfg15
-rw-r--r--setup.py1
2 files changed, 9 insertions, 7 deletions
diff --git a/setup.cfg b/setup.cfg
index 4ffc92c..932c5e2 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -17,18 +17,19 @@
# The following options are used to build PyYAML Windows installer
# for Python 2.3 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.2/include
-#library_dirs=../../../libyaml/tags/0.1.2/win32/vc6/output/release/lib
+#include_dirs=../../../libyaml/tags/0.1.3/include
+#library_dirs=../../../libyaml/tags/0.1.3/win32/vc6/output/release/lib
#define=YAML_DECLARE_STATIC
# The following options are used to build PyYAML Windows installer
# for Python 2.4 and Python 2.5 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.2/include
-#library_dirs=../../../libyaml/tags/0.1.2/win32/vs2003/output/release/lib
+#include_dirs=../../../libyaml/tags/0.1.3/include
+#library_dirs=../../../libyaml/tags/0.1.3/win32/vs2003/output/release/lib
#define=YAML_DECLARE_STATIC
# The following options are used to build PyYAML Windows installer
-# for Python 2.6 and Python 3.0 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.2/include
-#library_dirs=../../../libyaml/tags/0.1.2/win32/vs2008/output/release/lib
+# for Python 2.6, Python 3.0 and Python 3.1 on my PC:
+#include_dirs=../../../libyaml/tags/0.1.3/include
+#library_dirs=../../../libyaml/tags/0.1.3/win32/vs2008/output/release/lib
#define=YAML_DECLARE_STATIC
+
diff --git a/setup.py b/setup.py
index 8681cff..102f8ef 100644
--- a/setup.py
+++ b/setup.py
@@ -33,6 +33,7 @@ CLASSIFIERS = [
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
+ "Programming Language :: Python :: 3.1",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
]