Skip to content

Commit fbe953f

Browse files
committed
relaxing strict Py version constraint
1 parent 6f72259 commit fbe953f

File tree

5 files changed

+886
-18
lines changed

5 files changed

+886
-18
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/[email protected]
2424
with:
25-
python-version: "3.10.0"
25+
python-version: "3.10"
2626

2727
- name: Install uv
2828
uses: astral-sh/setup-uv@v5

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-python@v5
1313
with:
14-
python-version: '3.10.0'
14+
python-version: '3.10'
1515
- uses: pre-commit/[email protected]
1616

1717
build:
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/[email protected]
2727
with:
28-
python-version: "3.10.0"
28+
python-version: "3.10"
2929

3030
- name: Install uv
3131
uses: astral-sh/setup-uv@v5

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "python4ds"
33
version = "1.0.1"
44
description = "The online book that teaches you how to use Python for data science."
55
readme = "README.md"
6-
requires-python = "==3.10.0"
6+
requires-python = ">=3.10.0"
77
dependencies = [
88
"beautifulsoup4>=4.12.3",
99
"geopandas>=1.0.1",

0 commit comments

Comments
 (0)