Skip to content

Commit 3a5cf8c

Browse files
committed
Merge branch 'develop' of https://github.com/ArnauMiro/pyLowOrder into 120-add-shred
2 parents 93dcad9 + e7d4658 commit 3a5cf8c

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Diff for: .github/workflows/package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
- name: Install dependencies
4747
run: |
4848
python -m pip install --upgrade pip
49+
pip install setuptools build
4950
- name: Build package
5051
run: |
5152
make requirements_full
52-
pip install build
53-
sed -i 's/USE_COMPILED = ON/USE_COMPILED = OFF/g' options.cfg
53+
sed -i 's/USE_COMPILED = ON/USE_COMPILED = OFF/g' options.cfg
5454
make package-build
5555
make install
5656
# Publish to PyPi once the test-sute has been successfully run

Diff for: pyproject.toml

+3-5
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ requires-python = ">=3.9"
4444
# This is either text indicating the license for the distribution, or a file
4545
# that contains the license
4646
# https://packaging.python.org/en/latest/specifications/core-metadata/#license
47-
license = {file = "LICENSE"}
47+
license = "MIT"
48+
license-files = ["LICENSE"]
4849

4950
# This field adds keywords for your project which will appear on the
5051
# project page. What does your project relate to?
@@ -87,9 +88,6 @@ classifiers = [ # Optional
8788
"Intended Audience :: Science/Research",
8889
"Topic :: Scientific/Engineering",
8990

90-
# Pick your license as you wish
91-
"License :: OSI Approved :: MIT License",
92-
9391
# Specify the Python versions you support here. In particular, ensure
9492
# that you indicate you support Python 3. These classifiers are *not*
9593
# checked by "pip install". See instead "python_requires" below.
@@ -189,7 +187,7 @@ exclude = ["Converters", "DATA","Deps","Examples","Testsuite","Tools"]
189187
# These are the assumed default build requirements from pip:
190188
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
191189
requires = [
192-
"setuptools>=43.0.0",
190+
"setuptools>=77.0.0",
193191
"wheel",
194192
"numpy",
195193
"cython>=3.0.0",

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
setuptools>=43.0.0
1+
setuptools>=77.0.0
22
numpy
33
cython>=3.0.0
44
mpi4py>=4.0.0

0 commit comments

Comments
 (0)