Skip to content

Commit a1139b4

Browse files
authored
Rename the repo (DataDog#72)
1 parent dde51e2 commit a1139b4

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--- Please remember to review the [contribution guidelines](https://github.com/DataDog/datadog-lambda-layer-python/blob/master/CONTRIBUTING.md) if you have not yet done so._ --->
1+
<!--- Please remember to review the [contribution guidelines](https://github.com/DataDog/datadog-lambda-python/blob/master/CONTRIBUTING.md) if you have not yet done so._ --->
22

33
### What does this PR do?
44

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ We love pull requests. Here's a quick guide.
55
Fork, then clone:
66

77
```bash
8-
git clone [email protected]:your-username/datadog-lambda-layer-python.git
8+
git clone [email protected]:your-username/datadog-lambda-python.git
99
```
1010

1111
Make your change, update tests and ensure the tests pass (install Docker if you haven't):
@@ -16,6 +16,6 @@ Make your change, update tests and ensure the tests pass (install Docker if you
1616

1717
Push to your fork and [submit a pull request][pr].
1818

19-
[pr]: https://github.com/your-username/datadog-lambda-layer-python/compare/DataDog:master...master
19+
[pr]: https://github.com/your-username/datadog-lambda-python/compare/DataDog:master...master
2020

2121
At this point you're waiting on us. We may suggest some changes or improvements or alternatives.

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Datadog datadog-lambda-layer-python
1+
Datadog datadog-lambda-python
22
Copyright 2019 Datadog, Inc.
33

44
This product includes software developed at Datadog (https://www.datadoghq.com/).

scripts/build_layers.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ function docker_build_zip {
2424
# Install datadogpy in a docker container to avoid the mess from switching
2525
# between different python runtimes.
2626
temp_dir=$(mktemp -d)
27-
docker build -t datadog-lambda-layer-python:$1 . --no-cache \
27+
docker build -t datadog-lambda-python:$1 . --no-cache \
2828
--build-arg image=python:$1 \
2929
--build-arg runtime=python$1
3030

3131
# Run the image by runtime tag, tar its generatd `python` directory to sdout,
3232
# then extract it to a temp directory.
33-
docker run datadog-lambda-layer-python:$1 tar cf - python | tar -xf - -C $temp_dir
33+
docker run datadog-lambda-python:$1 tar cf - python | tar -xf - -C $temp_dir
3434

3535
# Zip to destination, and keep directory structure as based in $temp_dir
3636
(cd $temp_dir && zip -q -r $destination ./)

scripts/run_tests.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ PYTHON_VERSIONS=("2.7" "3.6" "3.7" "3.8")
1313
for python_version in "${PYTHON_VERSIONS[@]}"
1414
do
1515
echo "Running tests against python${python_version}"
16-
docker build -t datadog-lambda-layer-python-test:$python_version \
16+
docker build -t datadog-lambda-python-test:$python_version \
1717
-f tests/Dockerfile . \
1818
--build-arg python_version=$python_version
19-
docker run -v `pwd`:/datadog-lambda-layer-python \
20-
-w /datadog-lambda-layer-python \
21-
datadog-lambda-layer-python-test:$python_version \
19+
docker run -v `pwd`:/datadog-lambda-python \
20+
-w /datadog-lambda-python \
21+
datadog-lambda-python-test:$python_version \
2222
nose2 -v
23-
docker run -v `pwd`:/datadog-lambda-layer-python \
24-
-w /datadog-lambda-layer-python \
25-
datadog-lambda-layer-python-test:$python_version \
23+
docker run -v `pwd`:/datadog-lambda-python \
24+
-w /datadog-lambda-python \
25+
datadog-lambda-python-test:$python_version \
2626
flake8
2727
done

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
description="The Datadog AWS Lambda Layer",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",
18-
url="https://github.com/DataDog/datadog-lambda-%3Cspan%20class="x x-first x-last">layer-python",
18+
url="https://github.com/DataDog/datadog-lambda-python",
1919
author="Datadog, Inc.",
2020
author_email="[email protected]",
2121
classifiers=[

0 commit comments

Comments
 (0)