Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pytools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
pytools
Commits
bd60daae
Commit
bd60daae
authored
2 years ago
by
Andreas Klöckner
Committed by
Andreas Klöckner
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Make numpy dependency optional
parent
9ba4e221
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.github/workflows/ci.yml
+15
-0
15 additions, 0 deletions
.github/workflows/ci.yml
.gitlab-ci.yml
+13
-0
13 additions, 0 deletions
.gitlab-ci.yml
setup.py
+4
-1
4 additions, 1 deletion
setup.py
test/test_pytools.py
+6
-2
6 additions, 2 deletions
test/test_pytools.py
with
38 additions
and
3 deletions
.github/workflows/ci.yml
+
15
−
0
View file @
bd60daae
...
...
@@ -89,6 +89,21 @@ jobs:
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
. ./build-and-test-py-project.sh
pytest_nonumpy
:
name
:
Pytest without Numpy
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/setup-python@v1
with
:
python-version
:
'
3.x'
-
name
:
"
Main
Script"
run
:
|
NO_DOCTESTS=1
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
. ./build-and-test-py-project.sh
#examples:
# name: Examples Py3
# runs-on: ubuntu-latest
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
13
−
0
View file @
bd60daae
...
...
@@ -18,6 +18,19 @@ Pytest:
reports
:
junit
:
test/pytest.xml
Pytest without Numpy
:
script
:
|
NO_DOCTESTS=1
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
. ./build-and-test-py-project.sh
tags
:
-
python3
except
:
-
tags
artifacts
:
reports
:
junit
:
test/pytest.xml
# Examples:
# script: |
# EXTRA_INSTALL="numpy pymbolic"
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
4
−
1
View file @
bd60daae
...
...
@@ -38,13 +38,16 @@ setup(name="pytools",
install_requires
=
[
"
platformdirs>=2.2.0
"
,
"
numpy>=1.6.0
"
,
"
dataclasses>=0.7;python_version<=
'
3.6
'"
,
"
typing_extensions>=4.0; python_version<
'
3.11
'"
,
],
package_data
=
{
"
pytools
"
:
[
"
py.typed
"
]},
extras_require
=
{
"
numpy
"
:
[
"
numpy>=1.6.0
"
],
},
author
=
"
Andreas Kloeckner
"
,
url
=
"
http://pypi.python.org/pypi/pytools
"
,
author_email
=
"
inform@tiker.net
"
,
...
...
This diff is collapsed.
Click to expand it.
test/test_pytools.py
+
6
−
2
View file @
bd60daae
...
...
@@ -273,7 +273,7 @@ def test_find_module_git_revision():
def
test_reshaped_view
():
import
pytools
import
numpy
as
np
np
=
pytest
.
importorskip
(
"
numpy
"
)
a
=
np
.
zeros
((
10
,
2
))
b
=
a
.
T
...
...
@@ -319,6 +319,8 @@ def test_table():
def
test_eoc
():
np
=
pytest
.
importorskip
(
"
numpy
"
)
from
pytools.convergence
import
EOCRecorder
eoc
=
EOCRecorder
()
...
...
@@ -397,6 +399,8 @@ class FakeArray:
def
test_make_obj_array_iteration
():
pytest
.
importorskip
(
"
numpy
"
)
from
pytools.obj_array
import
make_obj_array
make_obj_array
([
FakeArray
()])
...
...
@@ -624,7 +628,7 @@ def test_sphere_sampling(sampling, visualize=False):
else
:
raise
ValueError
(
f
"
unknown sampling method:
'
{
sampling
}
'"
)
import
numpy
as
np
np
=
pytest
.
importorskip
(
"
numpy
"
)
points
=
sampling_func
(
npoints
)
assert
np
.
all
(
np
.
linalg
.
norm
(
points
,
axis
=
0
)
<
radius
+
1.0e-15
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment