Skip to content

Commit cbb8354

Browse files
authored
build: drop python 2.7 support (#929)
1 parent 50f3c8c commit cbb8354

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/build_library.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- uses: actions/setup-python@v2
4949
with:
50-
python-version: 2.7
50+
python-version: 3.7
5151

5252
- name: Build Wheel
5353
run: |
@@ -71,7 +71,7 @@ jobs:
7171

7272
- uses: actions/setup-python@v2
7373
with:
74-
python-version: 2.7
74+
python-version: 3.7
7575

7676
- name: Build sdist
7777
run: python setup.py sdist --format=zip

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
strategy:
134134
fail-fast: false
135135
matrix:
136-
python-version: [2.7, 3.7]
136+
python-version: [3.7]
137137

138138
# Skip redundant checks for binary releases
139139
if: "!startsWith(github.ref, 'refs/heads/release/')"

py/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Add NSError to mechanism. ([#925](https://github.com/getsentry/relay/pull/925))
66
- Add snapshot to the stack trace interface. ([#927](https://github.com/getsentry/relay/pull/927))
7+
- Drop python 2.7 support. ([#929](https://github.com/getsentry/relay/pull/929))
78

89
## 0.8.2
910

py/manylinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if [ "$AUDITWHEEL_ARCH" == "i686" ]; then
1616
LINUX32=linux32
1717
fi
1818

19-
$LINUX32 /opt/python/cp27-cp27mu/bin/python setup.py bdist_wheel
19+
$LINUX32 /opt/python/cp37-cp37mu/bin/python setup.py bdist_wheel
2020

2121
# Audit wheels
2222
for wheel in dist/*-linux_*.whl; do

0 commit comments

Comments
 (0)