Skip to content

Commit c76686e

Browse files
committed
Drop support for older Python versions
1 parent b0ef838 commit c76686e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.12']
1515

1616
services:
1717
postgres:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ decided (still work in progress!).
3333

3434
## Development
3535

36-
We chose Python 3.12 as the backend language, so make sure you have it installed (3.9-3.11 should work as well). To prepare the development environment it is enough to run `make` which takes care of installing all required dependencies inside a new virtualenv. Typically that will be the `.venv` directory unless you override the environment variable `VENV` *e.g.* `VENV=.virtualenv make`. Activate your virtualenv using ``source .venv/bin/activate`` since this is required to run the various `flask` comments that come later.
36+
We chose Python 3.12 as the backend language, so make sure you have it installed (`pyenv` helps if your distribution does not include it). To prepare the development environment it is enough to run `make` which takes care of installing all required dependencies inside a new virtualenv. Typically that will be the `.venv` directory unless you override the environment variable `VENV` *e.g.* `VENV=.virtualenv make`. Activate your virtualenv using ``source .venv/bin/activate`` since this is required to run the various `flask` comments that come later.
3737

3838
Make sure you have the `python` binary in your PATH. You can also use the `PYTHON` environment variable to override the location of the
3939
`python` binary. *e.g.:*

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ url = https://github.com/indico/newdle
1313
packages = find:
1414
zip_safe = false
1515
include_package_data = true
16-
python_requires = ~=3.9
16+
python_requires = ~=3.12

0 commit comments

Comments
 (0)