Skip to content

Commit 092b5cb

Browse files
authored
tests: Move pure_eval under toxgen (#4815)
### Description - moved pure_eval under toxgen #### Issues Ref #4506 #### Reminders - Please add tests to validate your changes, and lint your code using `tox -e linters`. - Add GH Issue ID _&_ Linear ID (if applicable) - PR title should use [conventional commit](https://develop.sentry.dev/engineering-practices/commit-messages/#type) style (`feat:`, `fix:`, `ref:`, `meta:`) - For external contributors: [CONTRIBUTING.md](https://github.com/getsentry/sentry-python/blob/master/CONTRIBUTING.md), [Sentry SDK development docs](https://develop.sentry.dev/sdk/), [Discord community](https://discord.gg/Ww9hbqr)
1 parent 4329383 commit 092b5cb

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

scripts/populate_tox/config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,9 @@
224224
"openfeature": {
225225
"package": "openfeature-sdk",
226226
},
227+
"pure_eval": {
228+
"package": "pure_eval",
229+
},
227230
"pymongo": {
228231
"package": "pymongo",
229232
"deps": {

scripts/populate_tox/populate_tox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
# of these from the IGNORE list
7171
"gcp",
7272
"httpx",
73-
"pure_eval",
7473
"ray",
7574
"redis",
7675
"requests",

scripts/populate_tox/tox.jinja

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ envlist =
6161
# OpenTelemetry Experimental (POTel)
6262
{py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-potel
6363

64-
# pure_eval
65-
{py3.6,py3.12,py3.13}-pure_eval
66-
6764
# Ray
6865
{py3.10,py3.11}-ray-v{2.34}
6966
{py3.10,py3.11}-ray-latest
@@ -177,9 +174,6 @@ deps =
177174
# OpenTelemetry Experimental (POTel)
178175
potel: -e .[opentelemetry-experimental]
179176
180-
# pure_eval
181-
pure_eval: pure_eval
182-
183177
# Ray
184178
ray-v2.34: ray~=2.34.0
185179
ray-latest: ray

tox.ini

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-09-17T07:20:17.058541+00:00
13+
# Last generated: 2025-09-17T14:43:06.969007+00:00
1414

1515
[tox]
1616
requires =
@@ -61,9 +61,6 @@ envlist =
6161
# OpenTelemetry Experimental (POTel)
6262
{py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-potel
6363

64-
# pure_eval
65-
{py3.6,py3.12,py3.13}-pure_eval
66-
6764
# Ray
6865
{py3.10,py3.11}-ray-v{2.34}
6966
{py3.10,py3.11}-ray-latest
@@ -317,6 +314,10 @@ envlist =
317314
# ~~~ Misc ~~~
318315
{py3.6,py3.12,py3.13}-loguru-v0.7.3
319316

317+
{py3.6,py3.7,py3.8}-pure_eval-v0.0.3
318+
{py3.6,py3.8,py3.9}-pure_eval-v0.1.1
319+
{py3.7,py3.12,py3.13}-pure_eval-v0.2.3
320+
320321
{py3.6}-trytond-v4.6.22
321322
{py3.6}-trytond-v4.8.18
322323
{py3.6,py3.7,py3.8}-trytond-v5.8.16
@@ -402,9 +403,6 @@ deps =
402403
# OpenTelemetry Experimental (POTel)
403404
potel: -e .[opentelemetry-experimental]
404405

405-
# pure_eval
406-
pure_eval: pure_eval
407-
408406
# Ray
409407
ray-v2.34: ray~=2.34.0
410408
ray-latest: ray
@@ -809,6 +807,10 @@ deps =
809807
# ~~~ Misc ~~~
810808
loguru-v0.7.3: loguru==0.7.3
811809

810+
pure_eval-v0.0.3: pure_eval==0.0.3
811+
pure_eval-v0.1.1: pure_eval==0.1.1
812+
pure_eval-v0.2.3: pure_eval==0.2.3
813+
812814
trytond-v4.6.22: trytond==4.6.22
813815
trytond-v4.8.18: trytond==4.8.18
814816
trytond-v5.8.16: trytond==5.8.16

0 commit comments

Comments
 (0)