-
Notifications
You must be signed in to change notification settings - Fork 3
Installation tweaks #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
wdeconinck
wants to merge
9
commits into
GridTools:master
Choose a base branch
from
wdeconinck:installation-tweaks
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+420
−193
Open
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2af653d
Installation tweaks, robust to reinstallations and externalised atlas…
wdeconinck 1578d37
Fix bug in arguments of RectangularDomain
wdeconinck ddc5864
Fix eckit deprecation warnings related to acessing eckit::Value (ecmw…
wdeconinck e8d955e
Update examples/Atlas4Py-Test.ipynb
wdeconinck ec7f1c4
Improve testing
wdeconinck 7ef5085
Bump dev version to 0.41.1.dev2
wdeconinck 505b1f6
Simplify compilation of atlas from source
wdeconinck 482253a
Remove 'atlas4py.version' attribute
wdeconinck 32ae4bb
Remove bump2version in requirements-dev.txt
wdeconinck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,6 @@ __pycache__/ | |
| *$py.class | ||
|
|
||
| # C extensions | ||
| *.cmake | ||
| *.so | ||
|
|
||
| # Distribution / packaging | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ dependencies = [ | |
|
|
||
| description = 'Python bindings for Atlas: a ECMWF library for parallel data-structures' | ||
| name = 'atlas4py' | ||
| version = '0.41.1.dev1' | ||
| version = '0.41.1.dev2' # <major>.<minor>.<patch>.dev<dev> : <atlas.major>.<atlas.minor>.<atlas.patch>.dev<atlas4py.dev> | ||
| license = {text = "Apache License 2.0"} | ||
| readme = {file = 'README.md', content-type = 'text/markdown'} | ||
| authors = [{email = '[email protected]'}, {name = 'Willem Deconinck'}] | ||
|
|
@@ -41,15 +41,15 @@ test = ['pytest', 'pytest-cache'] | |
|
|
||
| [tool.scikit-build] | ||
| minimum-version = '0.5' | ||
| build-dir="build/{wheel_tag}" | ||
| cmake.minimum-version = '3.25' | ||
| cmake.verbose = true | ||
| cmake.source-dir = "src/atlas4py" | ||
| cmake.build-type = "Release" | ||
| cmake.args = [ | ||
| "-DATLAS4PY_ECBUILD_VERSION=3.9.1", | ||
| "-DATLAS4PY_ECKIT_VERSION=1.28.6", | ||
| "-DATLAS4PY_ATLAS_VERSION=0.41.1", | ||
| "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=build", | ||
| "-DATLAS4PY_ATLAS_VERSION=0.41.1" | ||
| ] | ||
| wheel.expand-macos-universal-tags = true | ||
| wheel.install-dir = "atlas4py" | ||
|
|
@@ -75,3 +75,12 @@ exclude = ''' | |
| | dist | ||
| )/ | ||
| ''' | ||
|
|
||
| [tool.bumpversion] | ||
| # To update atlas4py dev version: | ||
| # pip install bump-my-version | ||
| # bump-my-version bump dev | ||
| parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.dev(?P<dev>\\d+))?" | ||
| serialize = ["{major}.{minor}.{patch}.dev{dev}"] | ||
| [[tool.bumpversion.files]] | ||
| filename = "pyproject.toml" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| black>=21.12b0 | ||
| bump2version>=1.0 | ||
| bump-my-version>=1.2.6 | ||
| numpy>=1.17 | ||
| pytest>=6.1 | ||
| tox>=4.0 | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tehrengruber this is now done.