Skip to content

Commit

Permalink
Python 3.12 (#263)
Browse files Browse the repository at this point in the history
* fix : Python 3.12 added to test.yml

* fix : test.yml installation section updated

* fix : Python 3.12 added to setup.py

* doc : CHANGELOG updated

* fix : minor edit in test.yml
  • Loading branch information
sepandhaghighi authored Nov 14, 2023
1 parent abfc138 commit 38dbf97
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,24 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macOS-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0, 3.12.0]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Installation
run: |
python -m pip install --upgrade pip
pip install .
- name: First test
run: |
python setup.py install
art
art test
art test2
- name: Install dev-requirements
- name: Test requirements installation
run: |
python -m pip install --upgrade pip
pip install --upgrade --upgrade-strategy=only-if-needed -r dev-requirements.txt
- name: Version check
run: |
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Test system modified
- `Python 3.12` added to `test.yml`
## [6.1] - 2023-09-20
### Changed
- `font_size_splitter` function modified
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def read_description():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Text Processing :: Fonts',
'Topic :: Text Editors',
'Topic :: Text Processing :: General',
Expand Down

0 comments on commit 38dbf97

Please sign in to comment.