Skip to content

Commit

Permalink
feat: upgrade to sentry 2024.02 and bump python to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
dlouzan committed Feb 21, 2024
1 parent 5371ff5 commit 3126836
Show file tree
Hide file tree
Showing 7 changed files with 198 additions and 198 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
- uses: abatilo/actions-poetry@v2
- name: Publish package
run: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
- uses: psf/black@stable
with:
options: "--check ."
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14.5
image: postgres:14.11
env:
POSTGRES_HOST_AUTH_METHOD: trust
# Set health checks to wait until postgres has started
Expand All @@ -45,24 +45,24 @@ jobs:
ports:
- 5432:5432
memcached:
image: memcached:1.6.21-alpine
image: memcached:1.6.23-alpine
ports:
- 11211:11211
redis:
image: redis:6.2.12-alpine
image: redis:6.2.14-alpine
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
- uses: abatilo/actions-poetry@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Setup required upstream yarn version
run: yarn set version 1.22.5
run: yarn set version 1.22.21
- run: |
sudo apt-get update && sudo apt-get install -y libxmlsec1-dev libmaxminddb-dev
python3 -m venv venv
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8.13
3.10.13
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SENTRY_VERSION := 22.8.0
SENTRY_VERSION := 24.2.0

.PHONY: clean develop test

Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

sys.path.insert(0, os.path.join(os.path.dirname(__file__)))

pytest_plugins = ["sentry.utils.pytest"]
pytest_plugins = ["sentry.testutils.pytest"]
368 changes: 184 additions & 184 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "sentry-auth-oidc"
version = "7.0.0"
version = "8.0.0"
description = "OpenID Connect authentication provider for Sentry"
authors = ["Max Wittig <[email protected]>"]
authors = ["Max Wittig <[email protected]>, Diego Louzán <[email protected]>"]
license = "Apache 2.0"
readme = "README.rst"
classifiers = [
Expand All @@ -16,7 +16,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"

[tool.poetry.dev-dependencies]
black = "^22.8.0"
Expand Down

0 comments on commit 3126836

Please sign in to comment.