Skip to content

Commit c1a4a14

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9b73ab1 commit c1a4a14

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

setup.cfg

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ long_description = file: README.md
44
long_description_content_type = text/markdown
55
url = hhttps://github.com/opensourceeconomics/scipy-2022-dev
66
license = MIT
7-
license_file = LICENSE
7+
license_files = LICENSE
88
platforms = unix, linux, osx, cygwin, win32
99
classifiers =
1010
Intended Audience :: Science/Research
@@ -14,14 +14,10 @@ classifiers =
1414
Operating System :: POSIX
1515
Programming Language :: Python :: 3
1616
Programming Language :: Python :: 3 :: Only
17-
Programming Language :: Python :: 3.7
18-
Programming Language :: Python :: 3.8
19-
Programming Language :: Python :: 3.9
20-
Programming Language :: Python :: 3.10
2117

2218
[options]
2319
packages = find:
24-
python_requires = >=3.7
20+
python_requires = >=3.9
2521
include_package_data = True
2622
package_dir =
2723
=src

src/scipy_dev/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains the main namespace of fte."""
2+
23
# Import the version from _version.py which is dynamically created by setuptools-scm
34
# when the project is installed with ``pip install -e .``. Do not put it into version
45
# control!

src/scipy_dev/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This module contains the general configuration of the project."""
2+
23
from pathlib import Path
34

45

src/scipy_dev/presentation/main.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ University of Bonn
102102
### Preview of practice session
103103

104104
- Translate a criterion function from math to code
105-
105+
106106
- Use `scipy.optimize` to minimize the criterion function
107107

108108
---
@@ -920,7 +920,7 @@ em.convergence_plot(
920920

921921
<!-- _class: lead -->
922922
# Bounds and Constraints
923-
---
923+
---
924924

925925
### Preview of practice session
926926

@@ -1621,7 +1621,7 @@ section.split {
16211621
<!-- _class: lead -->
16221622
# JAX and JAXopt
16231623

1624-
---
1624+
---
16251625
### Preview of practice session(s)
16261626

16271627
- Solve an optimization problem using JAX gradients

src/scipy_dev/source_repo/test_installation.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test that the environment is correctly installed."""
2+
23
from distutils.spawn import find_executable
34

45

0 commit comments

Comments
 (0)