Skip to content

Commit 5f3d8b6

Browse files
authored
Merge pull request #3169 from kraigb/kraigb-feedback
Freshness check and date updates
2 parents 191b120 + c674d0e commit 5f3d8b6

9 files changed

+12
-12
lines changed

docs/python/formatting-python-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Formatting Python code
33
description: How to automatically reformat Python code in Visual Studio including spacing, statements, wrapping, and comments.
4-
ms.date: 06/26/2018
4+
ms.date: 10/28/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual

docs/python/interactive-repl-ipython.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: IPython REPL (interactive window)
33
description: Using the Visual Studio interactive window in IPython mode for a user-friendly interactive development environment with Interactive Parallel Computing features.
4-
ms.date: 06/19/2018
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual

docs/python/linting-python-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Using PyLint to lint Python code
33
description: How to use PyLint in Visual Studio to check issues in Python code.
4-
ms.date: 06/26/2018
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual

docs/python/managing-python-projects-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Managing Python application projects
33
description: The purpose of projects in Visual Studio, how to create and manage projects for Python code, and the different project templates available for Python.
4-
ms.date: 06/27/2018
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual

docs/python/managing-required-packages-with-requirements-txt.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Using a requirements.txt file to manage package requirements
3-
description: You can use a requirements.txt file to manage a project's dependencies. If you receive a project that contains a requirements.txt file, you can easily install those dependencies in one step.
4-
ms.date: 06/27/2018
3+
description: A requirements.txt file describes a project's dependencies. If you receive a project that contains a requirements.txt file, you can easily install those dependencies in one step.
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual
@@ -15,7 +15,7 @@ ms.workload:
1515

1616
# Manage required packages with requirements.txt
1717

18-
If you're sharing a project with others, using a build system, or plan to deploy it to any other location where you need to restore an environment, you need to specify the external packages that the project requires. The recommended approach is to use a [requirements.txt file](http://pip.readthedocs.org/en/latest/user_guide.html#requirements-files) (readthedocs.org) that contains a list of commands for pip that installs the required versions of dependent packages.
18+
If you share a project with others, use a build system, or plan to copy the project to any other location where you need to restore an environment, you need to specify the external packages that the project requires. The recommended approach is to use a [requirements.txt file](http://pip.readthedocs.org/en/latest/user_guide.html#requirements-files) (readthedocs.org) that contains a list of commands for pip that installs the required versions of dependent packages. The most common command is `pip freeze > requirements.txt`, which records an environment's current package list into *requirements.txt*.
1919

2020
Technically, any filename may be used to track requirements (by using `-r <full path to file>` when installing a package), but Visual Studio provides specific support for *requirements.txt*:
2121

@@ -60,7 +60,7 @@ Cleaning up...
6060
Removing temporary dir C:\Project\env\build...
6161
```
6262

63-
### See also
63+
## See also
6464

6565
- [Manage Python environments in Visual Studio](managing-python-environments-in-visual-studio.md)
6666
- [Select an interpreter for a project](selecting-a-python-environment-for-a-project.md)

docs/python/python-interactive-repl-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Python interactive window (REPL)
33
description: How to use the interactive window (REPL) for Python code in Visual Studio for rapid code development.
4-
ms.date: 06/26/2018
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual

docs/python/python-support-options-and-settings-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Options and settings for Python
33
description: A reference for the various settings in Visual Studio that relate to Python code and projects.
4-
ms.date: 06/27/2018
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: reference

docs/python/python-web-application-project-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Web application templates for Python
33
description: An overview of the Visual Studio templates for web applications written in Python using the Bottle, Flask, and Django frameworks, including debugging configurations and publishing to Azure App Service.
4-
ms.date: 07/03/2018
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual

docs/python/search-paths.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: How Python search paths are applied
33
description: An overview of how Visual Studio uses Python search paths in both environments and projects.
4-
ms.date: 06/27/2018
4+
ms.date: 10/29/2018
55
ms.prod: visual-studio-dev15
66
ms.technology: vs-python
77
ms.topic: conceptual

0 commit comments

Comments
 (0)