summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * Require six 1.5 for html_parserJulien Schueller2016-08-181-1/+1
| |
* | Add compile_grammar command to setup.py (ref: #2765)Takeshi KOMIYA2016-08-191-5/+26
| |
* | Bundle sphinx/pycode/Grammar-*.pickle (ref: #2765)Takeshi KOMIYA2016-07-121-0/+5
| | | | | | | | | | | | So far, sphinx generates the grammar files on demand. It causes uninstallation does not remove whole of files. With this fix, Sphinx bundles the files in the package.
* | Handle more file closing with "with"Ville Skyttä2016-07-071-8/+2
| |
* | Use html5lib to parse HTML in tests instead of XMLParserAvram Lubkin2016-05-281-0/+1
| |
* | Merge branch 'stable'Takeshi KOMIYA2016-05-261-5/+12
|\ \ | |/
| * Make our custom compile_catalog command work with Babel 2.3Dmitry Shachnev2016-05-171-5/+12
| | | | | | | | In new Babel versions, self.domain is a list rather than a string.
* | Switch to using requests for better charset detectionDarragh Bailey2016-04-211-0/+1
|/ | | | | | | | | | | | Python requests does a better job of detecting the charsets of webpages, performing automatic decoding when the text content is requested, avoiding issues around needing to do detection. This allows checking the following urls & anchors correctly: http://www.yaml.org/spec/1.2/spec.html#id2761803 http://www.yaml.org/spec/1.2/spec.html#id2765878 http://www.yaml.org/spec/1.2/spec.html#id2765878
* Removed ez_setup.pyAlex Gaynor2016-02-131-6/+1
| | | | | | | There are no common cases where it will be used anymore: * pip always installs stuff with setuptools * Modern pythons preinstall setuptools
* Fix #2199: Use ``imagesize`` package to obtain size of imagesTakeshi KOMIYA2016-02-101-0/+1
|
* Merge pull request #2087 from cppformat/optional-rtdTakayuki SHIMIZUKAWA2016-01-151-1/+0
|\ | | | | refs #2087, #2086, #1845, #2097: Make sphinx_rtd_theme optional
| * Make sphinx_rtd_theme optionalvitaut2015-10-161-1/+0
| |
* | Merge branch 'stable'Takeshi KOMIYA2016-01-111-2/+2
|\ \ | |/ |/|
| * Fix #1820: On Windows, console coloring is broken with colorama version ↵shimizukawa2016-01-061-2/+2
| | | | | | | | 0.3.3. Now sphinx use colorama>=0.3.5 to avoid this problem.
| * Tune sphinx_rtd_theme versionAnthony Johnson2015-09-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | With some recent changes that are slightly backwards compatible, we were going to bump the version of the RTD theme. We wanted to drop the current version pattern for the semver scheme, but Sphinx's requirement on the RTD theme is pinned at >=0.1,<0.2. For now, we're stuck releasing on the current scheme. This relaxes the versioning requirement for the theme, with 2.0 being the following release that could contain backwards incompatible API changes. We'd likely wait to bump to 1.0 until the next Sphinx release, as to not break experience for users. Refs snide/sphinx_rtd_theme#244
* | Merge pull request #2009 from ProgVal/determinismTakayuki SHIMIZUKAWA2015-09-131-1/+1
|\ \ | | | | | | Make files generation at install deterministic
| * | Make Javascript locale deterministic.Valentin Lorentz2015-08-191-1/+1
| | |
* | | Merge pull request #2031 from agjohnson/rtd-theme-versionTakayuki SHIMIZUKAWA2015-09-131-1/+1
|\ \ \ | |_|/ |/| | Tune sphinx_rtd_theme version
| * | Tune sphinx_rtd_theme versionAnthony Johnson2015-09-091-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | With some recent changes that are slightly backwards compatible, we were going to bump the version of the RTD theme. We wanted to drop the current version pattern for the semver scheme, but Sphinx's requirement on the RTD theme is pinned at >=0.1,<0.2. For now, we're stuck releasing on the current scheme. This relaxes the versioning requirement for the theme, with 2.0 being the following release that could contain backwards incompatible API changes. We'd likely wait to bump to 1.0 until the next Sphinx release, as to not break experience for users. Refs snide/sphinx_rtd_theme#244
* | Avoid "2.0" version of Babel because it doesn't work with Windows ↵shimizukawa2015-09-131-1/+1
|/ | | | | | | | | | environment. Closes #1976. see also: * https://github.com/mitsuhiko/babel/issues/174 * https://github.com/mitsuhiko/babel/pull/188 Version spec syntax "babel>=1.3,!=2.0" is following PEP440: https://www.python.org/dev/peps/pep-0440/#version-exclusion and it works with pip 6.0 or later (I didn't check before pip 6.0).
* Merge pull request #1759 from bitprophet/patch-1Takayuki SHIMIZUKAWA2015-03-091-3/+3
|\ | | | | Version-lock unlocked dependencies
| * Version-lock unlocked dependenciesJeff Forcier2015-03-071-3/+3
| | | | | | | | | | | | | | As the author of one of the new theme dependencies (`alabaster`), having a wholly unqualified requirement scared me a bit re: ability to make non-bugfix releases without downstream users' sites changing underneath them in unexpected (visual) ways without them consciously upgrading Sphinx versions. `alabaster` uses semantic versioning so the lock reflects this. For consistency, I also updated the other new theme dependency similarly, and made `babel` match its fellow non-theme dependencies in having an optimistic (vs semantic) version lock, but I can revert these changes if desired.
* | final pep8 fixes; reactivate most warnings in flake8Georg Brandl2015-03-081-2/+2
|/
* add extras_require for websupport and test.shimizukawa2015-03-071-0/+9
|
* fix http/httpsshimizukawa2015-02-281-1/+1
|
* refs #1346. Add new default theme.shimizukawa2015-02-241-0/+2
| | | | | | | | | | | | | | - Rename 'default' theme to 'classic'. - rename `themes/default` to `themes/classic` - add new `themes/default` theme that derives from 'classic' theme for compatibility. - setup.py depends to 'alabaster' and 'rtd' theme. - theming.py import and run `alabaster.get_path()` to append path for alabaster theme. - theming.py also import and run `sphinx_rtd_theme.get_html_theme_path()` to append path. - sphinx-quickstart will generate `html_theme = 'alabaster'`. - If user use 'default', sphinx emit notice (WARNING) suggestion to use 'alabaster' or use 'classic'. - add documentation for new alabaster and readthedoc theme and link to original pages: - https://pypi.python.org/pypi/alabaster - https://pypi.python.org/pypi/sphinx_rtd_theme
* Merge branch 'stable'shimizukawa2015-01-061-1/+1
|\ | | | | | | | | Conflicts: setup.py
| * Exclude 'tests' instead of 'test'. Sphinx-1.2.3 wheel package includes ↵shimizukawa2015-01-061-1/+1
| | | | | | | | 'tests' directory. It might be happen by this wrong parameter.
* | Require newer docutils and Pygments.Georg Brandl2015-01-011-2/+2
| |
* | Provides environment marker (PEP-0426) to install colorama on win32 ↵Takayuki Shimizukawa2014-12-131-0/+8
| | | | | | | | environment for installation from wheel.
* | add PyPI classifiers for sphinxTakayuki Shimizukawa2014-11-271-0/+4
| |
* | merge with stableTakayuki Shimizukawa2014-09-021-1/+2
|\ \ | |/
| * run `make check` and correct errors.Takayuki Shimizukawa2014-09-011-1/+2
| |
* | Automatically compile ``*.mo`` files from ``*.po`` files.Takayuki Shimizukawa2014-08-031-1/+6
| |
* | raise six requirement to 1.4+ when UserString was addedanatoly techtonik2014-07-281-1/+1
| |
* | Windows color console support. update for pull request #252.Takayuki Shimizukawa2014-07-051-0/+3
| |
* | * Drop Python-3.2. And now, removing 2to3 mechanism procedure has been ↵Takayuki Shimizukawa2014-05-271-8/+5
| | | | | | | | | | | | | | | | | | | | | | completed. Closes #1350. Pygments-2.0 will drop Python-3.2. The snowballstemmer package that is referred from sphinx-1.3 (that is merged at pull request #214) has not supported Python-3.2. We decided to drop the Python-3.2. see also https://bitbucket.org/birkenfeld/sphinx/pull-request/243/native-py2-py3-support-without-2to3-refs
* | remove custom_fixers. it is not needed anymore.Takayuki Shimizukawa2014-05-031-1/+1
| |
* | remove 2to3. #1350.Takayuki Shimizukawa2014-05-011-9/+0
| |
* | introduce the six module and reduce sphinx.util.pycompat implementation. ↵Takayuki Shimizukawa2014-04-291-1/+1
| | | | | | | | refs #1350.
* | merge with stableGeorg Brandl2014-03-251-1/+1
|\ \ | |/
| * Fix: Generated i18n sphinx.js files are missing message catalog entries ↵Takayuki Shimizukawa2014-03-211-1/+1
| | | | | | | | from '.js_t' and '.html'. The issue was introduced from Sphinx-1.1. Closes #1419
* | Merged in shibu/sphinx/add_stemmer (pull request #214)Georg Brandl2014-03-041-1/+1
|\ \
| * \ merge defaultshibukawa yoshiki2014-01-221-6/+6
| |\ \
| * | | add 14 languages search supportshibukawa yoshiki2014-01-201-1/+1
| | | |
* | | | Merged in shimizukawa/sphinx-drop-old-docutils (pull request #206)Georg Brandl2014-03-011-4/+1
|\ \ \ \ | | | | | | | | | | | | | | | Drop docutils-0.7, 0.8, 0.9 support.
| * | | | Drop docutils-0.7, 0.8 and 0.9 supportTakayuki Shimizukawa2013-12-151-4/+1
| | |/ / | |/| |
* | | | merge with stableGeorg Brandl2014-01-221-3/+0
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | remove mention of development egg.Georg Brandl2014-01-221-3/+0
| |/
* | Drop python-3.1 and remove support codesTakayuki Shimizukawa2013-12-151-2/+2
| |