Skip to content

Update ubuntu image version test.yml #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
May 10, 2025
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -75,8 +75,6 @@ body:
- Python 3.9
- Python 3.8
- Python 3.7
- Python 3.6
- Python 3.5
default: 1
validations:
required: true
4 changes: 2 additions & 2 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ on:
jobs:
deploy:

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
@@ -31,4 +31,4 @@ jobs:
run: |
python setup.py sdist bdist_wheel
twine upload dist/*.tar.gz
twine upload dist/*.whl
twine upload dist/*.whl
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -16,16 +16,16 @@ on:

env:
TEST_PYTHON_VERSION: 3.9
TEST_OS: 'ubuntu-20.04'
TEST_OS: 'ubuntu-22.04'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2022, macOS-13]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0, 3.12.0, 3.13.0]
os: [ubuntu-22.04, windows-2022, macOS-13]
python-version: [3.7, 3.8, 3.9, 3.10.5, 3.11.0, 3.12.0, 3.13.0]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `clear` function in `functions.py` enhanced
- `update` function in `functions.py` enhanced
### Removed
- Python 3.6 support
- old issue template structure
## [0.3] - 2025-01-13
### Removed
4 changes: 2 additions & 2 deletions otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -15,10 +15,10 @@ requirements:
host:
- pip
- setuptools
- python >=3.6
- python >=3.7
run:
- art >=1.8
- python >=3.6
- python >=3.7
about:
home: https://github.com/openscilab/dmeta
license: MIT
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -42,14 +42,13 @@ def read_description():
'Source': 'https://github.com/openscilab/dmeta',
},
install_requires=get_requires(),
python_requires='>=3.6',
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',