Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit 3fe855a

Browse files
authored
Merge pull request #254 from codecov/thiago/b/remove-extra-url-header
[Master] Removing extra url header
2 parents b2aacfd + 0f08019 commit 3fe855a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

codecov/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1044,10 +1044,7 @@ def main(*argv, **kwargs):
10441044
s3 = requests.put(
10451045
upload_url,
10461046
data=reports,
1047-
headers={
1048-
"Content-Type": "text/plain",
1049-
"x-amz-acl": "public-read",
1050-
},
1047+
headers={"Content-Type": "text/plain",},
10511048
)
10521049
s3.raise_for_status()
10531050
assert s3.status_code == 200

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
from setuptools import setup
33

4-
version = "2.0.21"
4+
version = "2.1.0"
55
classifiers = [
66
"Development Status :: 5 - Production/Stable",
77
"Environment :: Plugins",

0 commit comments

Comments
 (0)