You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
All pull request authors must have a Contributor License Agreement (CLA) on-file with us. Please sign the Contributor License Agreements for Cloud Foundry ([Individual or Corporate](https://www.cloudfoundry.org/community/cla/)) via the EasyCLA application when you submit your first Pull Request.
6
6
7
-
When sending signed CLA please provide your github username in case of individual CLA or the list of github usernames that can make pull requests on behalf of your organization.
7
+
When sending signed CLA please provide your Github username in case of individual CLA or the list of Github usernames that can make pull requests on behalf of your organization.
8
8
9
9
If you are confident that you're covered under a Corporate CLA, please make sure you've publicized your membership in the appropriate Github Org, per these instructions.
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,20 @@ This buildpack supports running Django and Flask apps.
10
10
11
11
Official buildpack documentation can be found at [python buildpack docs](http://docs.cloudfoundry.org/buildpacks/python/index.html).
12
12
13
+
## Adding new dependencies
14
+
15
+
If you want to add a new dependency to the buildpack, please add it to the [config.yml](https://github.com/cloudfoundry/buildpacks-ci/blob/5a63d13df09f83d5dff7c71d0a12c3e2dc798d39/pipelines/dependency-builds/config.yml#L272) file. For example, if you want to add a new version of Python, add an entry like the following:
16
+
17
+
```yaml
18
+
python:
19
+
lines:
20
+
- line: 3.14.X
21
+
deprecation_date: 2030-10-07
22
+
link: https://peps.python.org/pep-0745/
23
+
```
24
+
25
+
The new dependency will be automatically added to the buildpack [manifest.yml](manifest.yml) file.
26
+
13
27
### Building the Buildpack
14
28
15
29
To build this buildpack, run the following commands from the buildpack's directory:
@@ -24,7 +38,7 @@ To build this buildpack, run the following commands from the buildpack's directo
24
38
1. Install buildpack-packager
25
39
26
40
```bash
27
-
go install github.com/cloudfoundry/libbuildpack/packager/buildpack-packager
41
+
go install github.com/cloudfoundry/libbuildpack/packager/buildpack-packager@latest
0 commit comments