Update changelog and publishing jobs

This commit is contained in:
Roman Mogylatov 2024-11-04 00:00:21 -05:00
parent 803d688452
commit efcce4cffa
2 changed files with 8 additions and 7 deletions

View File

@ -15,11 +15,11 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.12 python-version: 3.13
- run: pip install tox - run: pip install tox
- run: tox - run: tox
env: env:
TOXENV: 3.12 TOXENV: 3.13
linters: linters:
name: Run linters name: Run linters
@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.12 python-version: 3.13
- run: pip install tox - run: pip install tox
- run: tox - run: tox
env: env:
@ -45,7 +45,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.12 python-version: 3.13
- run: | - run: |
python -m pip install --upgrade pip setuptools python -m pip install --upgrade pip setuptools
python setup.py sdist python setup.py sdist
@ -61,7 +61,7 @@ jobs:
matrix: matrix:
os: [ubuntu-22.04, windows-2019, macos-14] os: [ubuntu-22.04, windows-2019, macos-14]
env: env:
CIBW_SKIP: cp27-* cp313-* CIBW_SKIP: cp27-*
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build wheels - name: Build wheels
@ -75,7 +75,7 @@ jobs:
needs: [tests, linters] needs: [tests, linters]
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
env: env:
CIBW_SKIP: cp27-* cp313-* CIBW_SKIP: cp27-*
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up QEMU - name: Set up QEMU
@ -114,7 +114,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.12 python-version: 3.13
- run: pip install awscli - run: pip install awscli
- run: pip install -r requirements-doc.txt - run: pip install -r requirements-doc.txt
- run: pip install -e . - run: pip install -e .

View File

@ -9,6 +9,7 @@ follows `Semantic versioning`_
Develop Develop
-------- --------
- Add support for Python 3.13.
- Migrate to Cython 3 (version 3.0.11). Many thanks to `ZipFile <https://github.com/ZipFile>`_ for - Migrate to Cython 3 (version 3.0.11). Many thanks to `ZipFile <https://github.com/ZipFile>`_ for
this contribution `#813 <https://github.com/ets-labs/python-dependency-injector/pull/813>`_. this contribution `#813 <https://github.com/ets-labs/python-dependency-injector/pull/813>`_.