Skip to content

Commit cf5136e

Browse files
authored
Actions/version update (#208)
* update ubuntu version to `22.04` in `test.yml` * update ubuntu version to `22.04` in `publish_conda.yml` and `publish_pypi.yml` * update ubuntu version to `22.04` in `test.yml` * drop python version 3.6 * `CHANGELOG.md` updated * update python version from `3.10.0` to `3.10.5` * update python version to 3.7 * drop python 3.5 and 3.6 from `bug_report.yml` * update minimum python version to 3.7 * `CHANGELOG.md` updated * `CHANGELOG.md` updated
1 parent 25b8390 commit cf5136e

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ body:
7575
- Python 3.9
7676
- Python 3.8
7777
- Python 3.7
78-
- Python 3.6
79-
- Python 3.5
8078
default: 1
8179
validations:
8280
required: true

.github/workflows/publish_conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
publish:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: publish-to-conda

.github/workflows/publish_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
deploy:
1414

15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616

1717
steps:
1818
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
env:
1818
TEST_PYTHON_VERSION: 3.9
19-
TEST_OS: 'ubuntu-20.04'
19+
TEST_OS: 'ubuntu-22.04'
2020
SKIP_STREAMING_OS: 'windows-2022'
2121
SKIP_STREAMING_PYTHON_VERSION: 3.11.0
2222

@@ -26,8 +26,8 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
os: [ubuntu-20.04, windows-2022, macOS-13]
30-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0, 3.12.0, 3.13.0]
29+
os: [ubuntu-22.04, windows-2022, macOS-13]
30+
python-version: [3.7, 3.8, 3.9, 3.10.5, 3.11.0, 3.12.0, 3.13.0]
3131
steps:
3232
- uses: actions/checkout@v4
3333
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
### Added
9+
### Changed
10+
- Test system modified
11+
### Removed
12+
- Python 3.6 support
713
## [1.3] - 2025-02-26
814
### Added
915
- `TfidfVectorizer` feature extractor

otherfiles/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ requirements:
1515
host:
1616
- pip
1717
- setuptools
18-
- python >=3.6
18+
- python >=3.7
1919
run:
20-
- python >=3.6
20+
- python >=3.7
2121
- numpy >=1.9.0
2222
- scikit-learn >=0.22.2
2323
- scipy >=0.19.1

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,12 @@ def read_description():
5151
extras_require={
5252
'streaming': get_requires(mode='streaming'),
5353
},
54-
python_requires='>=3.6',
54+
python_requires='>=3.7',
5555
classifiers=[
5656
'Development Status :: 3 - Alpha',
5757
'Natural Language :: English',
5858
'License :: OSI Approved :: MIT License',
5959
'Operating System :: OS Independent',
60-
'Programming Language :: Python :: 3.6',
6160
'Programming Language :: Python :: 3.7',
6261
'Programming Language :: Python :: 3.8',
6362
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)