Skip to content

Commit 93fcc47

Browse files
committed
removed idea editor files and added gitignore
updated CI python versions, increased version number to 1.1 fixed matplotlib private method removed, removed outdated README in tests folder pre-commit run --all-files removed np.array on ckeys addressed ci message: Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4
1 parent d870ce8 commit 93fcc47

15 files changed

Lines changed: 37 additions & 85 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ jobs:
99

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Cache python dependencies
1515
id: cache-pip
16-
uses: actions/cache@v1
16+
uses: actions/cache@v4
1717
with:
1818
path: ~/.cache/pip
1919
key: pip-pre-commit-${{ hashFiles('**/setup.json') }}
2020
restore-keys:
2121
pip-pre-commit-
2222

23-
- name: Set up Python 3.8
24-
uses: actions/setup-python@v2
23+
- name: Set up Python 3.9
24+
uses: actions/setup-python@v5
2525
with:
26-
python-version: '3.8'
26+
python-version: '3.9'
2727

2828
- name: Install python dependencies
2929
run:
@@ -39,23 +39,23 @@ jobs:
3939

4040
strategy:
4141
matrix:
42-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
42+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
4343

4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v4
4747

4848
- name: Cache python dependencies
4949
id: cache-pip
50-
uses: actions/cache@v1
50+
uses: actions/cache@v4
5151
with:
5252
path: ~/.cache/pip
5353
key: pip-pre-commit-${{ hashFiles('**/setup.json') }}
5454
restore-keys:
5555
pip-pre-commit-
5656

5757
- name: Set up Python ${{ matrix.python-version }}
58-
uses: actions/setup-python@v2
58+
uses: actions/setup-python@v5
5959
with:
6060
python-version: ${{ matrix.python-version }}
6161

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v2
21-
- name: Set up Python 3.8
21+
- name: Set up Python 3.9
2222
uses: actions/setup-python@v2
2323
with:
24-
python-version: '3.8'
24+
python-version: '3.9'
2525
- run: python .github/workflows/check_release_tag.py $GITHUB_REF setup.json
2626

2727
pre-commit:
@@ -41,10 +41,10 @@ jobs:
4141
restore-keys:
4242
pip-pre-commit-
4343

44-
- name: Set up Python 3.8
44+
- name: Set up Python 3.9
4545
uses: actions/setup-python@v2
4646
with:
47-
python-version: '3.8'
47+
python-version: '3.9'
4848

4949
- name: Install python dependencies
5050
run:
@@ -60,7 +60,7 @@ jobs:
6060

6161
strategy:
6262
matrix:
63-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
63+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
6464

6565
steps:
6666
- name: Checkout
@@ -100,10 +100,10 @@ jobs:
100100
steps:
101101
- name: Checkout source
102102
uses: actions/checkout@v2
103-
- name: Set up Python 3.8
103+
- name: Set up Python 3.9
104104
uses: actions/setup-python@v2
105105
with:
106-
python-version: '3.8'
106+
python-version: '3.9'
107107
- name: Build package
108108
run: |
109109
pip install wheel

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ coverage.xml
5050
# Visual Studio Code
5151
.vscode/
5252

53+
# idea editor
54+
.idea
55+
5356
# Translations
5457
*.mo
5558
*.pot

.idea/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/sportran.iml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

setup.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"name": "sportran",
3-
"version": "1.0.0rc4",
3+
"version": "1.1.0",
44
"author": "Loris Ercole, Riccardo Bertossa, Sebastiano Bisacchi",
55
"author_email": "loris.ercole@epfl.ch",
66
"description": "Cepstral Data Analysis of current time series for Green-Kubo transport coefficients",
77
"license": "GPL 3",
88
"url": "https://github.com/sissaschool/sportran",
99
"keywords": "cepstral data analysis thermal conductivity transport coefficients physics green-kubo",
10-
"python_requires": ">=3.7, <4",
10+
"python_requires": ">=3.9, <4",
1111
"classifiers": [
1212
"Development Status :: 5 - Production/Stable",
1313
"Programming Language :: Python",
14-
"Programming Language :: Python :: 3.7",
15-
"Programming Language :: Python :: 3.8",
1614
"Programming Language :: Python :: 3.9",
1715
"Programming Language :: Python :: 3.10",
1816
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1919
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2020
"Operating System :: OS Independent",
2121
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)