Skip to content

build: drop python 2.7 support #929

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 12, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: 2.7
python-version: 3.7

- name: Build Wheel
run: |
Expand All @@ -71,7 +71,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: 2.7
python-version: 3.7

- name: Build sdist
run: python setup.py sdist --format=zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.7]
python-version: [3.7]

# Skip redundant checks for binary releases
if: "!startsWith(github.ref, 'refs/heads/release/')"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- By adding `.no-cache` to the DSN key, Relay refreshes project configuration caches immediately. This allows to apply changed settings instantly, such as updates to data scrubbing or inbound filter rules. ([#911](https://github.com/getsentry/relay/pull/911))
- Add NSError to mechanism. ([#925](https://github.com/getsentry/relay/pull/925))
- Add snapshot to the stack trace interface. ([#927](https://github.com/getsentry/relay/pull/927))
- drop python 2.7 support. ([#929](https://github.com/getsentry/relay/pull/929))

**Bug Fixes**:

Expand Down
2 changes: 1 addition & 1 deletion py/manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ "$AUDITWHEEL_ARCH" == "i686" ]; then
LINUX32=linux32
fi

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

# Audit wheels
for wheel in dist/*-linux_*.whl; do
Expand Down