Skip to content

Commit

Permalink
Mark 3.10 as minimum Python version. Fixes #295
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Aug 15, 2024
1 parent df9d868 commit 7e18a58
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']

steps:
- name: Checkout repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/source-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
[[ ! "$GITHUB_REF" =~ refs/tags ]] && exit
echo "::set-output name=value::${GITHUB_REF#refs/tags/v}"
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.12

- name: Build source archive and wheel
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ For [Conduit](https://gitlab.com/famedly/conduit) see their [installation instru
Install
-------

1. Install Python 3.9 or newer
1. Install Python 3.10 or newer
2. Install dependencies in virtualenv

```bash
Expand Down Expand Up @@ -217,7 +217,7 @@ To update your installation, run `pip install --upgrade heisenbridge`
Develop
-------

1. Install Python 3.9 or newer
1. Install Python 3.10 or newer
2. Install dependencies

```bash
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ line_length = 132

[tool.black]
line-length = 120
target-version = ['py36']
target-version = ['py310']
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ install_requires =
python-socks[asyncio] >= 1.2.4
aiohttp >=3.8.0, <4.0.0

python_requires = >=3.9
python_requires = >=3.10

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 7e18a58

Please sign in to comment.