Skip to content

Commit 467bde9

Browse files
feat: Remove outdated version pins (#2690)
--------- Co-authored-by: Anton Pirker <[email protected]>
1 parent dcb56d2 commit 467bde9

23 files changed

+119
-118
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,9 @@ updates:
99
- dependency-type: direct
1010
- dependency-type: indirect
1111
ignore:
12-
- dependency-name: pytest
13-
versions:
14-
- "> 3.7.3"
15-
- dependency-name: flake8 # Later versions dropped Python 2 support
16-
versions:
17-
- "> 5.0.4"
18-
- dependency-name: jsonschema # Later versions dropped Python 2 support
19-
versions:
20-
- "> 3.2.0"
21-
- dependency-name: pytest-cov
22-
versions:
23-
- "> 2.8.1"
24-
- dependency-name: pytest-forked
25-
versions:
26-
- "> 1.1.3"
2712
- dependency-name: sphinx
2813
versions:
2914
- ">= 2.4.a, < 2.5"
30-
- dependency-name: tox
31-
versions:
32-
- "> 3.7.0"
3315
- dependency-name: werkzeug
3416
versions:
3517
- "> 0.15.5, < 1"

.github/workflows/test-integrations-aws-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
python-version: ${{ matrix.python-version }}
7474
- name: Setup Test Env
7575
run: |
76-
pip install coverage "tox>=3,<4"
76+
pip install coverage tox
7777
- name: Erase coverage
7878
run: |
7979
coverage erase

.github/workflows/test-integrations-cloud-computing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Setup Test Env
4040
run: |
41-
pip install coverage "tox>=3,<4"
41+
pip install coverage tox
4242
- name: Erase coverage
4343
run: |
4444
coverage erase
@@ -86,7 +86,7 @@ jobs:
8686
python-version: ${{ matrix.python-version }}
8787
- name: Setup Test Env
8888
run: |
89-
pip install coverage "tox>=3,<4"
89+
pip install coverage tox
9090
- name: Erase coverage
9191
run: |
9292
coverage erase

.github/workflows/test-integrations-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Setup Test Env
4040
run: |
41-
pip install coverage "tox>=3,<4"
41+
pip install coverage tox
4242
- name: Erase coverage
4343
run: |
4444
coverage erase

.github/workflows/test-integrations-data-processing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Setup Test Env
4040
run: |
41-
pip install coverage "tox>=3,<4"
41+
pip install coverage tox
4242
- name: Erase coverage
4343
run: |
4444
coverage erase
@@ -94,7 +94,7 @@ jobs:
9494
python-version: ${{ matrix.python-version }}
9595
- name: Setup Test Env
9696
run: |
97-
pip install coverage "tox>=3,<4"
97+
pip install coverage tox
9898
- name: Erase coverage
9999
run: |
100100
coverage erase

.github/workflows/test-integrations-databases.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,9 @@ jobs:
4646
ports:
4747
- 5432:5432
4848
env:
49+
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
4950
SENTRY_PYTHON_TEST_POSTGRES_USER: postgres
5051
SENTRY_PYTHON_TEST_POSTGRES_PASSWORD: sentry
51-
SENTRY_PYTHON_TEST_POSTGRES_NAME: ci_test
52-
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
5352
steps:
5453
- uses: actions/[email protected]
5554
- uses: actions/setup-python@v5
@@ -58,9 +57,7 @@ jobs:
5857
- uses: getsentry/action-clickhouse-in-ci@v1
5958
- name: Setup Test Env
6059
run: |
61-
pip install coverage "tox>=3,<4"
62-
psql postgresql://postgres:sentry@localhost:5432 -c "create database ${SENTRY_PYTHON_TEST_POSTGRES_NAME};" || true
63-
psql postgresql://postgres:sentry@localhost:5432 -c "grant all privileges on database ${SENTRY_PYTHON_TEST_POSTGRES_NAME} to ${SENTRY_PYTHON_TEST_POSTGRES_USER};" || true
60+
pip install coverage tox
6461
- name: Erase coverage
6562
run: |
6663
coverage erase
@@ -124,10 +121,9 @@ jobs:
124121
ports:
125122
- 5432:5432
126123
env:
124+
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
127125
SENTRY_PYTHON_TEST_POSTGRES_USER: postgres
128126
SENTRY_PYTHON_TEST_POSTGRES_PASSWORD: sentry
129-
SENTRY_PYTHON_TEST_POSTGRES_NAME: ci_test
130-
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
131127
steps:
132128
- uses: actions/[email protected]
133129
- uses: actions/setup-python@v5
@@ -136,9 +132,7 @@ jobs:
136132
- uses: getsentry/action-clickhouse-in-ci@v1
137133
- name: Setup Test Env
138134
run: |
139-
pip install coverage "tox>=3,<4"
140-
psql postgresql://postgres:sentry@localhost:5432 -c "create database ${SENTRY_PYTHON_TEST_POSTGRES_NAME};" || true
141-
psql postgresql://postgres:sentry@localhost:5432 -c "grant all privileges on database ${SENTRY_PYTHON_TEST_POSTGRES_NAME} to ${SENTRY_PYTHON_TEST_POSTGRES_USER};" || true
135+
pip install coverage tox
142136
- name: Erase coverage
143137
run: |
144138
coverage erase

.github/workflows/test-integrations-graphql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Setup Test Env
4040
run: |
41-
pip install coverage "tox>=3,<4"
41+
pip install coverage tox
4242
- name: Erase coverage
4343
run: |
4444
coverage erase
@@ -86,7 +86,7 @@ jobs:
8686
python-version: ${{ matrix.python-version }}
8787
- name: Setup Test Env
8888
run: |
89-
pip install coverage "tox>=3,<4"
89+
pip install coverage tox
9090
- name: Erase coverage
9191
run: |
9292
coverage erase

.github/workflows/test-integrations-miscellaneous.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Setup Test Env
4040
run: |
41-
pip install coverage "tox>=3,<4"
41+
pip install coverage tox
4242
- name: Erase coverage
4343
run: |
4444
coverage erase
@@ -86,7 +86,7 @@ jobs:
8686
python-version: ${{ matrix.python-version }}
8787
- name: Setup Test Env
8888
run: |
89-
pip install coverage "tox>=3,<4"
89+
pip install coverage tox
9090
- name: Erase coverage
9191
run: |
9292
coverage erase

.github/workflows/test-integrations-networking.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Setup Test Env
4040
run: |
41-
pip install coverage "tox>=3,<4"
41+
pip install coverage tox
4242
- name: Erase coverage
4343
run: |
4444
coverage erase
@@ -86,7 +86,7 @@ jobs:
8686
python-version: ${{ matrix.python-version }}
8787
- name: Setup Test Env
8888
run: |
89-
pip install coverage "tox>=3,<4"
89+
pip install coverage tox
9090
- name: Erase coverage
9191
run: |
9292
coverage erase

.github/workflows/test-integrations-web-frameworks-1.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,17 @@ jobs:
4646
ports:
4747
- 5432:5432
4848
env:
49+
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
4950
SENTRY_PYTHON_TEST_POSTGRES_USER: postgres
5051
SENTRY_PYTHON_TEST_POSTGRES_PASSWORD: sentry
51-
SENTRY_PYTHON_TEST_POSTGRES_NAME: ci_test
52-
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
5352
steps:
5453
- uses: actions/[email protected]
5554
- uses: actions/setup-python@v5
5655
with:
5756
python-version: ${{ matrix.python-version }}
5857
- name: Setup Test Env
5958
run: |
60-
pip install coverage "tox>=3,<4"
61-
psql postgresql://postgres:sentry@localhost:5432 -c "create database ${SENTRY_PYTHON_TEST_POSTGRES_NAME};" || true
62-
psql postgresql://postgres:sentry@localhost:5432 -c "grant all privileges on database ${SENTRY_PYTHON_TEST_POSTGRES_NAME} to ${SENTRY_PYTHON_TEST_POSTGRES_USER};" || true
59+
pip install coverage tox
6360
- name: Erase coverage
6461
run: |
6562
coverage erase
@@ -115,20 +112,17 @@ jobs:
115112
ports:
116113
- 5432:5432
117114
env:
115+
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
118116
SENTRY_PYTHON_TEST_POSTGRES_USER: postgres
119117
SENTRY_PYTHON_TEST_POSTGRES_PASSWORD: sentry
120-
SENTRY_PYTHON_TEST_POSTGRES_NAME: ci_test
121-
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
122118
steps:
123119
- uses: actions/[email protected]
124120
- uses: actions/setup-python@v5
125121
with:
126122
python-version: ${{ matrix.python-version }}
127123
- name: Setup Test Env
128124
run: |
129-
pip install coverage "tox>=3,<4"
130-
psql postgresql://postgres:sentry@localhost:5432 -c "create database ${SENTRY_PYTHON_TEST_POSTGRES_NAME};" || true
131-
psql postgresql://postgres:sentry@localhost:5432 -c "grant all privileges on database ${SENTRY_PYTHON_TEST_POSTGRES_NAME} to ${SENTRY_PYTHON_TEST_POSTGRES_USER};" || true
125+
pip install coverage tox
132126
- name: Erase coverage
133127
run: |
134128
coverage erase

0 commit comments

Comments
 (0)