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
8 changes: 4 additions & 4 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pytest-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
Build-linux:
runs-on: ${{ matrix.os }}
env:
CC: gcc-9
CC: gcc

strategy:
matrix:
os: [ubuntu-20.04, ubuntu-latest]
python-version: [3.8, 3.x]
os: [ubuntu-22.04, ubuntu-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest-macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.6-dev, 3.x]
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,15 @@ def extensions():
with open("README.md", "r") as fh:
long_description = fh.read()

s_required = ["cython>=0.17,<=3.0.0", "versioneer", "flake8"]
i_required = ["contexttimer"]
i_required = ["contexttimer", "numpy"]
s_required = ["cython>=3.0", "versioneer", "flake8"]

configuration = {
'name': 'pyrevolve',
'packages': find_packages(exclude=['examples', 'tests']),
'setup_requires': s_required,
'install_requires': i_required,
'python_requires': '>=3.10,<3.14',
'extras_require': {'compression': ['blosc2', 'pyzfp']},
'ext_modules': lazy_cythonize(extensions),
'version': versioneer.get_version(),
Expand All @@ -54,7 +55,15 @@ def extensions():
'author': "Imperial College London",
'author_email': 'g.gorman@imperial.ac.uk',
'license': 'MIT',
'zip_safe': False
'zip_safe': False,
'classifiers': [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
]
}


Expand Down