summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/requirements.rst
AgeCommit message (Collapse)Author
2022-02-05Cleanup remnants of Py3.6 supportBert JW Regeer
2020-11-28drop python 3.5Michael Merickel
2019-12-23restore py35Michael Merickel
2019-12-15Remove Python 3.4, Python 3.5, and add Python 3.8Steve Piercy
2018-11-16Remove virtualenv and explicit py3 mentionsSteve Piercy
2018-11-16Remove most Python 2 mentions from docs. Exclusions:Steve Piercy
- `docs/tutorials/wiki/*` was written for Python 2 and supposedly won't run on Python 3. - `docs/api/compat.rst` because it drops some stuff and moves other bits into `pyramid.util` and should be part of another PR. - Ignored a couple of times where `env27` and `Python 2.` appear in command output, but they are inconsequential.
2018-08-22venv is for Python 3.3+, and we support 3.4, so just 3 is fineSteve Piercy
2018-08-22Bump Python version to 3.7 in docs and project meta filesSteve Piercy
2018-08-19Standardize macOS capitalizationSteve Piercy
2018-08-19Standardize Unix capitalizationSteve Piercy
2018-08-18Clean up code-blocks in qt/requirementsSteve Piercy
2018-05-16Use actual tree output characters, now that we have Unicode supportSteve Piercy
2018-05-14Removes the step to install additional packages in the quick tutorial.Joel Rivera
This part is redundant because in the same tutorial we indicate to install the application in development/editable mode with `pip -e` in the next section. (which will install the required dependencies if needed by the app) Related issue: #3181
2017-10-21Changes per stevepiercy review, thanks!Chris Shenton
2017-10-21Quick Tutorial: Replace wsgiref with waitressChris Shenton
In setup.py add waitress import. In development.ini use waitress. Adjust line number highlighting. Mention that we're using it early in the tutorial. Addresses #2926
2017-01-15Update Windows docsSteve Piercy
- Installation overhauled - update project.rst to remove duplication - Windows paths never end with "\" except for a drive name, for example C:\ - use backslashes for paths - backslashes cannot be used for line continuation on Windows - update extra packages for Windows - Python now has a Windows launcher
2016-12-25quick_tutorial/requirements - add promptSteve Piercy
2016-11-26add 3.6 support to documentationSteve Piercy
- See #2835
2016-09-24Why use venv/bin/pip instead of source bin/activate then pip?Steve Piercy
- Closes #2610
2016-09-01drop support for python 3.3 and error on 2.6Michael Merickel
closes #2476
2016-07-02Update Windows installation instructions and related bits.Steve Piercy
- Use proper Windows commands, drives, and paths - Use doscon for Windows console lexer
2016-05-15use characters that don't break the latexpdf builder. See #2572Steve Piercy
2016-04-16quick_tutorial cleanupSteve Piercy
- replace nose with pytest - cleanup jinja2.rst - add pyramid_jinja2 to requirements.rst
2016-04-16quick_tutorial cleanupSteve Piercy
- cleanup hello_world.rst
2016-04-16quick_tutorial cleanupSteve Piercy
- update pip and setuptools - moar cleanup
2016-04-16quick_tutorial cleanupSteve Piercy
- replace nose and coverage with pytest and pytest-cov - update glossary and terms - use doscon lexer for Windows commands - refer to Pyramid Installation and put an end to copy-pasta - fix directory tree
2016-04-12one does not simply "create a virtualenv". one should "create a virtual ↵Steve Piercy
environment". - Fixes #2483
2016-04-12- replace `pyvenv` with `python3 -m venv`Steve Piercy
2016-04-10- update installation.rst to use pip, pyvenv, Python 3.4Steve Piercy
- simplify installation.rst by removing not-Pyramid things (installing Python and requirements for installing packages) while providing official external references - update cross-reference in quick_tutorial requirements.rst - add glossary entry for pyvenv
2016-04-06- remove conf.py stragglerSteve Piercy
- update intersphinx link to python3 docs - Closes #2429
2016-04-03- replace easy_install with pipSteve Piercy
- bump Python version to 3.5 or generalize to Python 3 - rewrite seealso's - use ps1con lexer for windows powershell console - add hyperlink targets
2016-02-14Revert "Use lexer name compatible w/ Pygments 1.5."Tres Seaver
This reverts commit eee002a2b0b010834a2ebede550329dbea3b3732.
2016-02-14Use lexer name compatible w/ Pygments 1.5.Tres Seaver
Attempt to fix Jenkins build failures such as: http://jenkins.pylonsproject.org/job/pyramid/1992/console.
2016-01-24Use proper syntax names in code samples to allow highlighting and avoid ↵Steve Piercy
errors. See https://github.com/sphinx-doc/sphinx/issues/2264
2016-01-20Update docs to reflect dropping Python 3.2 supportSteve Piercy
2015-05-16- replace image with ASCII tree diagramSteve Piercy
- make venv name generic without a version to reduce future maintenance
2015-05-16cherrypick from 1.5Steve Piercy
2014-04-09Typo correction "setupy"-->"setup.py"thapar
2014-04-09- clarify Windows setuptools instructionsSteve Piercy
- correct typo on location
2014-02-16Match optional reqs on Windows to those on POSIX.Tres Seaver
2014-02-16Clarify reasons for preferring easy_install over pip.Tres Seaver
2014-02-10- Garden PR #1121Steve Piercy
2013-10-08Small quick tutorial fixes post conference.Paul Everitt
2013-09-28Used a parsed-literal to pin the version number on easy_install.Paul Everitt
2013-09-26Quick Tour: shorten the setup part and point to Quick Tutorial Requirements ↵Paul Everitt
for more explanation. Cross link each Quick Tour section with its Quick Tutorial match.
2013-09-25Get pyramid_chameleon added to the quick tutorial, plus some other fixes for ↵Paul Everitt
Python 3.
2013-09-25Add some more of the up-front packages.Paul Everitt
2013-09-25Oops, need a $VENV path to easy_installPaul Everitt
2013-09-25Quick Tutorial: Improve the setup instructions (adapted from Steve Piercy's ↵Paul Everitt
work), particularly for Windows. Change all the steps to use $VENV/bin prefixes on commands (don't presume that they have done source env/bin/activate).