Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish_conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: publish-to-conda
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
deploy:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

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

jobs:
build:
Expand All @@ -25,8 +25,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2022]
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]
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 }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2. `F2_VS_F1F2`
### Changed
- `README.md` updated
- Test system modified
- `Python 3.6` support dropped
## [1.5] - 2025-01-22
### Added
- 3 new generation modes
Expand Down
4 changes: 2 additions & 2 deletions otherfiles/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ requirements:
host:
- pip
- setuptools
- python >=3.6
- python >=3.7
run:
- art >=1.8
- matplotlib >=3.0.0
- requests >=2.20.0
- pillow >=6.2
- python >=3.6
- python >=3.7
about:
home: https://github.com/sepandhaghighi/samila
license: MIT
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def read_description():
'Discord': 'https://discord.com/invite/94bz5QGZWb',
},
install_requires=get_requires(),
python_requires='>=3.6',
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
Expand All @@ -62,7 +62,6 @@ def read_description():
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down