Skip to content

Commit 95808c8

Browse files
authored
Merge pull request #449 from hoijnet/fix/minimum-version-python
Fix/minimum version python
2 parents 7b3ef1c + 37d20a7 commit 95808c8

File tree

6 files changed

+16
-7
lines changed

6 files changed

+16
-7
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
strategy:
3030
matrix:
31-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
31+
python-version: ["3.9", "3.10", "3.11", "3.12"]
3232

3333
steps:
3434
- uses: actions/checkout@v3

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Thanks for interested to contribute to TerminusDB Client, to get started, fork t
44

55
## Setting up dev environment 💻
66

7-
Make sure you have Python>=3.8 installed. We use [pipenv](https://pipenv-fork.readthedocs.io/en/latest/) for dev environment, to install pipenv:
7+
Make sure you have Python>=3.9 installed. We use [pipenv](https://pipenv-fork.readthedocs.io/en/latest/) for dev environment, to install pipenv:
88

99
`pip3 install pipenv --upgrade`
1010

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ graph all through a simple document API, with full git-for-data version control.
2929
## Requirements
3030

3131
- [TerminusDB v11.1](https://github.com/terminusdb/terminusdb-server)
32-
- [Python >=3.8](https://www.python.org/downloads)
32+
- [Python >=3.9](https://www.python.org/downloads)
3333

3434
## Release Notes and Previous Versions
3535

RELEASE_NOTES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
## v11.1.0
44

5-
- Add support for python 3.12
5+
- Add support for python 3.12 and deprecate python 3.8 (end of life)
66
- Aligned with TerminusDB 11.1 overall and general preparation for v11.2.0
77

8-
### Bug fixes
8+
### Bug fixes and maintenance
99

1010
- Fix schema parameter to database construction
11+
- Update minimum Python version to 3.9 for urllib3 2.5.0 compatibility
12+
- Include latest security updates
1113

1214
## v10.2.6
1315

docs/release_steps.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,21 @@ git push origin main --tags
2424

2525
## Details
2626

27+
### Create tag manually
28+
29+
```bash
30+
git tag -s v11.1.0 -m "Release v11.1.0"
31+
git push origin main --tags
32+
```
33+
2734
### What bumpversion updates
2835
- `terminusdb_client/__version__.py`
2936
- `pyproject.toml`
3037
- `.bumpversion.cfg`
3138

3239
### Automated deployment
3340
Pushing a tag triggers GitHub Actions to:
34-
- Run tests (Python 3.8-3.12)
41+
- Run tests (Python 3.9-3.12)
3542
- Build with Poetry
3643
- Publish to PyPI
3744

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache Software License"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]
10-
python = ">=3.8.0,<3.13"
10+
python = ">=3.9.0,<3.13"
1111
requests = "^2.31.0"
1212
numpy = ">= 1.13.0"
1313
numpydoc = "*"

0 commit comments

Comments
 (0)