Skip to content

Commit 697dba1

Browse files
committed
Added py3.14
1 parent 173782d commit 697dba1

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

.github/test-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: "composite"
1111
steps:
1212
- name: Setup Python ${{ inputs.python-version }}
13-
uses: actions/setup-python@v5.1.1
13+
uses: actions/setup-python@v6
1414
with:
1515
python-version: ${{ inputs.python-version }}
1616
cache: pip

.github/workflows/code-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616
persist-credentials: false
17-
- uses: actions/setup-python@v5.1.1
17+
- uses: actions/setup-python@v6
1818
with:
1919
python-version: 3.9
2020
cache: pip

.github/workflows/code-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
push:
88

99
env:
10-
PY_BASE_VERSION: "3.9"
10+
PY_BASE_VERSION: "3.10"
1111

1212
jobs:
1313
coverage-test: # Tests code for base version and coverage
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151
strategy:
5252
matrix:
53-
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
53+
python-version: [ '3.11', '3.12', '3.13','3.14' ]
5454
steps:
5555
- uses: actions/checkout@v4
5656
with:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
fetch-tags: true
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
26-
python-version: 3.9
26+
python-version: 3.10
2727

2828
- name: Install dependencies
2929
run: |
@@ -43,4 +43,4 @@ jobs:
4343
gh release create $TAG --generate-notes
4444
4545
- name: Publish to PyPI
46-
uses: pypa/gh-action-pypi-publish@v1.12.4
46+
uses: pypa/gh-action-pypi-publish@v1.13.0

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# VObjectx
1+
# vObjectx
22

33
| | |
44
|----------------|---------------------------------------------------------------------------------------------|
@@ -7,13 +7,13 @@
77
| Package | ![pypi-v] ![pypi-downloads] |
88
| MetaData | [![license-badge]][license] |
99

10-
VObjectx is intended to be a full-featured Python3 package for parsing and
10+
vObjectx is intended to be a full-featured Python3 package for parsing and
1111
generating vCard and vCalendar files.
1212

1313
### Disclaimer
1414

15-
:warning: Documentation is under-development, package is in beta stage.
16-
:white_check_mark: **For production, use [py-vobject/vobject][pyvobject]**
15+
⚠️ Documentation is under-development, package is in beta stage.
16+
**For production, use [py-vobject/vobject][pyvobject]**
1717

1818
- This package aims to rewrite `py-vobject/vobject` package with base as `v0.9.8` using latest Python 3 features.
1919
- It is a practice project to learn about different areas of python package creation and maintainenece.
@@ -23,11 +23,12 @@ Made with 💚
2323

2424
[pyvobject]: https://www.github.com/py-vobject/vobject
2525

26+
[license]: https://github.com/rsb-23/vobjectx/blob/main/LICENSE
2627
[lint-badge]: https://github.com/rsb-23/vobjectx/actions/workflows/code-lint.yml/badge.svg
2728
[tests-badge]: https://github.com/rsb-23/vobjectx/actions/workflows/code-test.yml/badge.svg
28-
[license]: https://github.com/rsb-23/vobjectx/blob/main/LICENSE
29+
2930
[license-badge]: https://img.shields.io/badge/License-Apache_2.0-orange.svg
3031
[pre-commit-badge]: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
32+
[py-version]: https://img.shields.io/pypi/pyversions/vobjectx
3133
[pypi-downloads]: https://img.shields.io/pypi/dm/vobjectx?label=Downloads
3234
[pypi-v]: https://img.shields.io/pypi/v/vobjectx?label=latest
33-
[py-version]: https://img.shields.io/pypi/pyversions/vobjectx

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ classifiers = [
1717
"License :: OSI Approved :: Apache Software License",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
2423
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2525
"Programming Language :: Python :: Implementation :: CPython",
2626
"Environment :: Console",
2727
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)