Skip to content

Commit

Permalink
Remove down pinning of tokenizers and drop support for python3.8 (#212)
Browse files Browse the repository at this point in the history
* remove down-pinning of tokenizers and bump it

* try installing with no cache

* drop support for py3.8
  • Loading branch information
fgebhart authored Dec 16, 2024
1 parent 053e827 commit 7711f53
Show file tree
Hide file tree
Showing 6 changed files with 844 additions and 1,093 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.12]
python-version: [3.9, 3.12]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup Poetry
uses: Gr1N/setup-poetry@v9
- name: Install deps
run: poetry install --extras "dev" --extras "types"
run: poetry install --extras "dev" --extras "types" --no-cache
- name: Lint with mypy
run: |
poetry run mypy aleph_alpha_client
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ celerybeat.pid
.venv
env/
venv/
venv*/
ENV/
env.bak/
venv.bak/
Expand Down
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 8.1.0

### Python support

- Minimal supported Python version is now 3.9

## 8.0.0

- Remove default value for `host` parameter in `Client` and `AsyncClient`. Passing a value for
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Now you should be able to ...

* run all the tests using `pytest` or, `pytest -k <test_name>` to run a specific test
* typecheck the code and tests using `mypy aleph_alpha_client` resp. `mypy tests`
* format the code using `black .`
* format the code using `ruff`

## Links

Expand Down
Loading

0 comments on commit 7711f53

Please sign in to comment.