Skip to content
Snippets Groups Projects
Unverified Commit 4cda3a05 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

python 3.12 + ver bump

parent 42de4c23
No related branches found
No related tags found
No related merge requests found
Pipeline #60977 passed with stages
in 2 minutes and 20 seconds
...@@ -51,6 +51,10 @@ test_python310: ...@@ -51,6 +51,10 @@ test_python310:
image: python:3.10 image: python:3.10
test_python312:
extends: .test_python
image: python:3.12
test_python311: test_python311:
extends: .test_python extends: .test_python
...@@ -71,9 +75,6 @@ test_python311: ...@@ -71,9 +75,6 @@ test_python311:
after_script: after_script:
- pip install twine - pip install twine
- TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/* - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*
artifacts:
paths:
- "*.whl"
upload_python311_armv7l: upload_python311_armv7l:
image: zoo.smok.co/build/build:latest image: zoo.smok.co/build/build:latest
...@@ -106,8 +107,16 @@ build_python311: ...@@ -106,8 +107,16 @@ build_python311:
image: python:3.11 image: python:3.11
build_python312:
extends: .build_python
image: python:3.12
build_python311_armv7l: build_python311_armv7l:
extends: .build_python extends: .build_python
image: zoo.smok.co/build/build:armv7l-python3.11 image: zoo.smok.co/build/build:armv7l-python3.11
after_script: after_script:
- echo "Do nothing" - echo "Do nothing"
artifacts:
paths:
- "*.whl"
Changelog Changelog
========= =========
v3.1.1
------
* added support for Python 3.12
v3.1.0 v3.1.0
------ ------
......
...@@ -18,11 +18,11 @@ sys.path.insert(0, os.path.abspath('..')) ...@@ -18,11 +18,11 @@ sys.path.insert(0, os.path.abspath('..'))
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'MiniJSON' project = 'MiniJSON'
copyright = '2021 Dronehub Group sp. z o. o.' copyright = '2021 Dronehub Group sp. z o. o., 2022-2024 SMOK sp. z o. o.'
author = 'Piotr Maślanka' author = 'Piotr Maślanka'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '3.1.0' release = '3.1.1a1'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
# coding: utf-8 # coding: utf-8
[metadata] [metadata]
version = 3.1.0 version = 3.1.1a1
name = minijson name = minijson
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8 long_description_content_type = text/markdown; charset=UTF-8
...@@ -38,4 +38,4 @@ max-line-length = 100 ...@@ -38,4 +38,4 @@ max-line-length = 100
universal = 0 universal = 0
[options] [options]
python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.* python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment