Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bline
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Software Public
PASSOFT
bline
Commits
d8c7a105
Commit
d8c7a105
authored
1 year ago
by
Omid Hosseini
Browse files
Options
Downloads
Patches
Plain Diff
Add support for ARM64 platforms
parent
d539d842
No related branches found
No related tags found
1 merge request
!19
Add support for ARM64 platforms
Pipeline
#3567
passed with stage
in 18 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build.sh
+9
-0
9 additions, 0 deletions
build.sh
conda.recipe/meta.yaml
+2
-2
2 additions, 2 deletions
conda.recipe/meta.yaml
setup.py
+4
-2
4 additions, 2 deletions
setup.py
with
15 additions
and
4 deletions
build.sh
0 → 100644
+
9
−
0
View file @
d8c7a105
version
=
"2023.2.0.0"
version_extension
=
$(
uname
-m
)
export
PACKAGE_VERSION
=
"
${
version
}
"
_
"
${
version_extension
}
"
echo
"
$PACKAGE_VERSION
"
conda build
.
This diff is collapsed.
Click to expand it.
conda.recipe/meta.yaml
+
2
−
2
View file @
d8c7a105
package
:
name
:
bline
version
:
2023.2.0.0
version
:
"
{{
PACKAGE_VERSION
}}"
source
:
path
:
../
build
:
noarch
:
python
script
:
{{
PYTHON
}}
-m pip install . --no-deps -vv
script
:
"
{{
PYTHON
}}
-m
pip
install
.
--no-deps
-vv
"
requirements
:
build
:
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
4
−
2
View file @
d8c7a105
...
...
@@ -3,6 +3,7 @@
"""
The setup script.
"""
import
platform
from
setuptools
import
setup
,
find_packages
with
open
(
'
README.rst
'
,
'
rt
'
)
as
readme_file
:
...
...
@@ -10,6 +11,7 @@ with open('README.rst', 'rt') as readme_file:
with
open
(
'
HISTORY.rst
'
,
'
rt
'
)
as
history_file
:
history
=
history_file
.
read
()
version_extension
=
platform
.
uname
().
machine
setup
(
author
=
"
IRIS PASSCAL
"
,
...
...
@@ -40,9 +42,9 @@ setup(
long_description
=
readme
+
'
\n\n
'
+
history
,
include_package_data
=
True
,
keywords
=
'
bline
'
,
name
=
'
bline
'
,
name
=
'
bline
'
+
'
+
'
+
version_extension
,
packages
=
find_packages
(
include
=
[
'
bline
'
]),
url
=
'
https://git.passcal.nmt.edu/software_public/passoft/bline
'
,
version
=
'
2023.2.0.0
'
,
version
=
'
2023.2.0.0
'
+
'
+
'
+
version_extension
,
zip_safe
=
False
,
)
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