Skip to content

Commit

Permalink
build: add support for Python 3.11 (#295)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Python 3.7 is not supported anymore
  • Loading branch information
Deuchnord authored and Jérôme Deuchnord committed Nov 11, 2022
1 parent 3bf4ed7 commit 08da307
Show file tree
Hide file tree
Showing 4 changed files with 152 additions and 177 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -20,10 +20,10 @@ jobs:
- ubuntu-latest
- macos-latest
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'

name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -15,14 +15,14 @@ If you want to give a try to Kosmorro, head to [its official download page](http

Before you run Kosmorro in your development environment, check you have installed these programs on your system:

- Python ≥ 3.7.0 (needed run Kosmorro)
- PIP3 (needed for package management, usually installed among with Python 3)
- [Poetry](https://python-poetry.org/) (needed to manage the virtual environment)
- Python ≥ 3.8
- PIP3
- [Poetry](https://python-poetry.org/)

Clone this repository and run `poetry install` to install all the dependencies.
Then, run Kosmorro by invoking `poetry run python kosmorro`.
Then, run Kosmorro by invoking `poetry run kosmorro`.

For comfort, you may want to invoke `poetry shell` first and then just `python kosmoro`.
For comfort, you may want to invoke `poetry shell` first and then just `kosmorro`.

## Using Kosmorro

Expand Down

0 comments on commit 08da307

Please sign in to comment.