Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snakehouse
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
snakehouse
Commits
26965944
Commit
26965944
authored
5 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
fix build
parent
35e31f2b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
example/setup.py
+2
-2
2 additions, 2 deletions
example/setup.py
example/tests/test_test.py
+1
-1
1 addition, 1 deletion
example/tests/test_test.py
with
3 additions
and
3 deletions
example/setup.py
+
2
−
2
View file @
26965944
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
from
snakehouse
import
Multibuild
,
build
from
setuptools
import
Extension
...
...
@@ -9,7 +9,7 @@ cython_multibuilds = [
Multibuild
(
'
example_module
'
,
[
'
example_module/test.pyx
'
,
'
example_module/test2.pyx
'
,
'
example_module/test3/test3.pyx
'
,
'
example_module/test_n.c
'
]),
Extension
(
'
example
'
,
[
'
example2/example.pyx
'
])
Extension
(
'
example2.
example
'
,
[
'
example2/example.pyx
'
])
]
# first argument is used directly by snakehouse, the rest and **kwargs are passed to
...
...
This diff is collapsed.
Click to expand it.
example/tests/test_test.py
+
1
−
1
View file @
26965944
from
example_module.test
import
times_two
from
example_module.test2
import
times_three
,
times_five
from
example_module.test3.test3
import
times_four
from
example.example
2
import
test
from
example
2
.example
import
test
import
unittest
...
...
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