Skip to content

Commit 59f07c3

Browse files
authored
Update changes for release (#262)
* Update `setup`'s restrictions to remove upper limits on things like `quastle`. * Make sure there is a default `uproot`-backend definition in the default fall-back `servicex.yaml` file. * Relax the `make_async` package restriction * Relax the `confuse` yaml parser definition * Add mac-os testing in (not sure why it wasn't there!) * And have it run its periodic checks once per week, not once per day. Working towards a 2.6.2 release.
1 parent 94173c5 commit 59f07c3

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66
# Run daily at 0:01 UTC
77
schedule:
8-
- cron: "1 0 * * *"
8+
- cron: "1 0 * * 0"
99
workflow_dispatch:
1010

1111
jobs:
@@ -39,7 +39,7 @@ jobs:
3939

4040
strategy:
4141
matrix:
42-
platform: [ubuntu-latest, windows-latest]
42+
platform: [ubuntu-latest, windows-latest, macOS-latest]
4343
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
4444
runs-on: ${{ matrix.platform }}
4545

servicex/config_default.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ api_endpoints:
99
- endpoint: http://localhost:5000
1010
name: default
1111
type: cms_run1_aod
12+
- endpoint: http://localhost:5000
13+
name: default
14+
type: uproot
1215

1316
# This is the path of the cache. The "/tmp" will be translated, platform appropriate, and
1417
# the env variable USER will be replaced.

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"aiohttp~=3.6",
4444
"minio~=5.0",
4545
"tqdm~=4.0",
46-
"qastle>=0.10, <1.0",
47-
"make_it_sync==1.0.0",
46+
"qastle>=0.10",
47+
"make_it_sync>= 1.0.0",
4848
"google-auth",
49-
"confuse==1.3.0",
49+
"confuse",
5050
"pyarrow>=1.0",
5151
],
5252
extras_require={
@@ -82,6 +82,7 @@
8282
"Programming Language :: Python :: 3.8",
8383
"Programming Language :: Python :: 3.9",
8484
"Programming Language :: Python :: 3.10",
85+
"Programming Language :: Python :: 3.11",
8586
],
8687
package_data={
8788
"servicex": ["config_default.yaml"],

0 commit comments

Comments
 (0)