Skip to content

Commit

Permalink
remove support for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
berislavlopac committed Apr 16, 2024
1 parent 103261b commit b82f506
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .semaphore/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ agent:
global_job_config:
prologue:
commands:
- sem-version python 3.8
- sem-version python 3.11
- checkout
- python -m pip install -U pip pdm
blocks:
Expand Down
5 changes: 2 additions & 3 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ blocks:
task:
prologue:
commands:
- sem-version python 3.8
- sem-version python 3.11
- python -m pip install -U pip pdm tox tox-pdm
jobs:
- name: checks
Expand All @@ -37,7 +37,6 @@ blocks:
matrix:
- env_var: PY_VERSION
values:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
Expand All @@ -58,7 +57,7 @@ blocks:
- name: pypi-credentials
prologue:
commands:
- sem-version python 3.8
- sem-version python 3.11
- python -m pip install -U pip pdm
jobs:
- name: Build and upload Python package
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "momoa"
version = "0.2.3"
version = "0.3.0"
description = "A library for definition, validation and serialisation of Python objects based on JSONSchema specifications."
readme = "README.md"
license = {text = "MIT"}
Expand All @@ -17,7 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Topic :: File Formats :: JSON :: JSON Schema"
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"statham-schema>=0.13.5",
"python-dateutil>=2.8.2",
Expand Down
1 change: 1 addition & 0 deletions release-notes/0.3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* remove support for Python 3.8
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
isolated_build = true
envlist = checks, py38, py39, py310, py311, py312
envlist = checks, py39, py310, py311, py312

[testenv]
skip_install = true
Expand Down

0 comments on commit b82f506

Please sign in to comment.