Skip to content

Commit 25466a3

Browse files
committed
BLD: Update GitHub workflows
1 parent 79e1c80 commit 25466a3

File tree

4 files changed

+11
-17
lines changed

4 files changed

+11
-17
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
upload_url: ${{ steps.create-release.outputs.upload_url }}
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
with:
2424
fetch-depth: 2
2525

@@ -65,11 +65,11 @@ jobs:
6565

6666
publish-sdist:
6767
needs: [ tag-release ]
68-
name: publish-sdist - Python 3.9 (ubuntu-latest)
68+
name: publish-sdist - Python 3.10 (ubuntu-latest)
6969
runs-on: ubuntu-latest
7070

7171
steps:
72-
- uses: actions/checkout@v2
72+
- uses: actions/checkout@v3
7373

7474
# Python setup
7575
- name: Set up Python environment
@@ -118,25 +118,19 @@ jobs:
118118
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
119119
run: twine upload dist/*
120120

121-
publish-wheels:
121+
publish-wheel:
122122
needs: [ tag-release ]
123-
strategy:
124-
fail-fast: false
125-
matrix:
126-
arch: [ x86 ]
127-
os: [ ubuntu-latest, macos-latest, windows-latest ]
128-
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
129-
name: publish-wheels - Python ${{ matrix.python-version }} (${{ matrix.arch }} ${{ matrix.os }})
130-
runs-on: ${{ matrix.os }}
123+
name: publish-wheel - Python 3.10 (ubuntu-latest)
124+
runs-on: ubuntu-latest
131125

132126
steps:
133-
- uses: actions/checkout@v2
127+
- uses: actions/checkout@v3
134128

135129
# Python setup
136130
- name: Set up Python environment
137131
uses: actions/setup-python@v2
138132
with:
139-
python-version: ${{ matrix.python-version }}
133+
python-version: "3.10"
140134

141135
# Install release dependencies
142136
- name: Install release dependencies

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121

2222
# Python setup
2323
- name: Set up Python environment

databento/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aiohttp>=3.7.2
2-
dbz-lib>=0.1.1
2+
dbz-lib>=0.1.2
33
numpy>=1.17.0
44
pandas>=1.1.3
55
requests>=2.24.0

0 commit comments

Comments
 (0)