Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pyproject.toml: project.requires-python = ">=3.11.1,<3.11.2" #8229

Merged
merged 12 commits into from
Aug 25, 2023
Merged
6 changes: 1 addition & 5 deletions .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,14 @@ permissions:

jobs:
python_tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version-file: pyproject.toml
- uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
Expand Down
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
# verbose regular expressions by Black. Use [ ] to denote a significant space
# character.

[project]
name = "openlibrary"
version = "1.0.0"
requires-python = ">=3.11.1,<3.11.2"

[tool.black]
skip-string-normalization = true
target-version = ["py311"]
Expand Down