Skip to content

Commit 7ee604e

Browse files
feat(pypi): relax smart_open range to include 7.x.x (#117)
* feat(pypi): relax smart_open range to include 7.x.x * chore: update build script for latest action versions
1 parent 5f5d521 commit 7ee604e

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/python-package.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ jobs:
1313
build:
1414
strategy:
1515
matrix:
16-
os: [ubuntu-20.04]
1716
python-version: [3.8, 3.9, 3.10.6, 3.11, 3.12]
1817

19-
runs-on: ${{ matrix.os }}
18+
runs-on: ubuntu-latest
2019
steps:
21-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2221
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v3
22+
uses: actions/setup-python@v5
2423
with:
2524
python-version: ${{ matrix.python-version }}
2625
- name: Install dependencies
@@ -44,9 +43,9 @@ jobs:
4443
build-windows:
4544
runs-on: "windows-latest"
4645
steps:
47-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4847
- name: Set up Python
49-
uses: actions/setup-python@v3
48+
uses: actions/setup-python@v5
5049
with:
5150
python-version: 3.11
5251
- name: Install dependencies
@@ -69,9 +68,9 @@ jobs:
6968
needs: "build"
7069
if: github.ref == 'refs/heads/master'
7170
steps:
72-
- uses: actions/checkout@v3
71+
- uses: actions/checkout@v4
7372
- name: Set up Node
74-
uses: actions/setup-node@v3
73+
uses: actions/setup-node@v4
7574
with:
7675
node-version: "18"
7776
- name: Deploy

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
smart-open>=5.2.1,<7.0.0
1+
smart-open>=5.2.1,<8.0.0
22
typer>=0.3.0,<1.0.0
33
dataclasses>=0.6,<1.0; python_version < "3.7"
44
pathlib_abc==0.1.1

0 commit comments

Comments
 (0)