Skip to content
Snippets Groups Projects
Commit d8c7a105 authored by Omid Hosseini's avatar Omid Hosseini
Browse files

Add support for ARM64 platforms

parent d539d842
No related branches found
No related tags found
1 merge request!19Add support for ARM64 platforms
Pipeline #3567 passed with stage
in 18 seconds
version="2023.2.0.0"
version_extension=$(uname -m)
export PACKAGE_VERSION="${version}"_"${version_extension}"
echo "$PACKAGE_VERSION"
conda build .
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:
......
......@@ -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,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment