-
Notifications
You must be signed in to change notification settings - Fork 3
Release 2025 #22
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
Merged
Merged
Release 2025 #22
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
46fbc83
Put in line with release requirements
thomasarsouze 2bd6c27
Update pyproject.toml
pradal b491430
Update AUTHORS.md
pradal 12762e4
Add data files
pradal 770b18e
up
pradal db37921
add test
pradal 8224f5f
up
pradal 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 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 |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| [report] | ||
| exclude_lines = | ||
| pragma: no cover | ||
| omit = | ||
| *tests* | ||
| show_missing = True | ||
|
|
||
| [html] | ||
| title = openalea.agroservices coverage report | ||
| directory = build/htmlcov | ||
|
|
||
| [run] | ||
| source = openalea.agroservices | ||
| omit = | ||
| *__init__* | ||
| *test* | ||
|
|
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 |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| { | ||
| "template": "https://github.com/openalea/cookiecutter-openalea", | ||
| "commit": "0a5d3e9daaa57fd8f9668ac2d8ae07b741607a93", | ||
| "checkout": null, | ||
| "context": { | ||
| "cookiecutter": { | ||
| "full_name": "OpenAlea", | ||
| "email": "[email protected]", | ||
| "github_username": "openalea", | ||
| "project_name": "agroservices", | ||
| "project_slug": "agroservices", | ||
| "description": "\"AgroService is a Python package that provides access to IPM Web Services (at least) and a framework to easily implement Web Services wrappers. This package is intended to be close to the webservice. Therefore the requests will have the same API that each web service.\"", | ||
| "pure_python": true, | ||
| "version": "1.0.1", | ||
| "_copy_without_render": [ | ||
| ".github/workflows/conda-package-build.yml" | ||
| ], | ||
| "_template": "https://github.com/openalea/cookiecutter-openalea", | ||
| "_commit": "0a5d3e9daaa57fd8f9668ac2d8ae07b741607a93" | ||
| } | ||
| }, | ||
| "directory": null | ||
| } |
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 |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # your_package/.github/workflows/openalea_ci.yml | ||
|
|
||
| name: OpenAlea CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - master | ||
| tags: | ||
| - 'v*' | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - synchronize | ||
| - reopened | ||
| release: | ||
| types: | ||
| - published | ||
|
|
||
| jobs: | ||
| build: | ||
| uses: openalea/action-build-publish-anaconda/.github/workflows/openalea_ci.yml@main | ||
| secrets: | ||
| anaconda_token: ${{ secrets.ANACONDA_TOKEN }} |
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,112 +1,90 @@ | ||
| # Byte-compiled / optimized / DLL files | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
|
|
||
| .DS_Store | ||
| # C extensions | ||
| *.so | ||
|
|
||
| # Distribution / packaging | ||
| .Python | ||
| build/ | ||
| develop-eggs/ | ||
| dist/ | ||
| downloads/ | ||
| eggs/ | ||
| .eggs/ | ||
| lib/ | ||
| lib64/ | ||
| parts/ | ||
| sdist/ | ||
| var/ | ||
| wheels/ | ||
| *.egg-info/ | ||
| .installed.cfg | ||
| # Packages | ||
| *.egg | ||
| *.egg-info | ||
| build | ||
| eggs | ||
| .eggs | ||
| parts | ||
| var | ||
| sdist | ||
| develop-eggs | ||
| .installed.cfg | ||
| lib | ||
| lib64 | ||
| MANIFEST | ||
| .vscode | ||
|
|
||
| # PyInstaller | ||
| # Usually these files are written by a python script from a template | ||
| # before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
| *.manifest | ||
| *.spec | ||
|
|
||
| # Installer logs | ||
| pip-log.txt | ||
| pip-delete-this-directory.txt | ||
| npm-debug.log | ||
| pip-selfcheck.json | ||
|
|
||
| # Unit test / coverage reports | ||
| htmlcov/ | ||
| .tox/ | ||
| .coverage | ||
| .coverage.* | ||
| .cache | ||
| .tox | ||
| nosetests.xml | ||
| coverage.xml | ||
| *.cover | ||
| .hypothesis/ | ||
| .pytest_cache/ | ||
| htmlcov | ||
| .cache | ||
| .pytest_cache | ||
| .mypy_cache | ||
|
|
||
| # Translations | ||
| *.mo | ||
| *.pot | ||
|
|
||
| # Django stuff: | ||
| *.log | ||
| local_settings.py | ||
| db.sqlite3 | ||
| # Mr Developer | ||
| .mr.developer.cfg | ||
| .project | ||
| .pydevproject | ||
|
|
||
| # Flask stuff: | ||
| instance/ | ||
| .webassets-cache | ||
| # SQLite | ||
| test_exp_framework | ||
|
|
||
| # Scrapy stuff: | ||
| .scrapy | ||
| # npm | ||
| node_modules/ | ||
|
|
||
| # Sphinx documentation | ||
| doc/build/ | ||
| doc/source/references/generated | ||
| # dolphin | ||
| .directory | ||
| libpeerconnection.log | ||
|
|
||
| # PyBuilder | ||
| target/ | ||
| # setuptools | ||
| dist | ||
|
|
||
| # Jupyter Notebook | ||
| .ipynb_checkpoints | ||
| # IDE Files | ||
| atlassian-ide-plugin.xml | ||
| .idea/ | ||
| *.swp | ||
| *.kate-swp | ||
| .ropeproject/ | ||
|
|
||
| # pyenv | ||
| .python-version | ||
|
|
||
| # celery beat schedule file | ||
| celerybeat-schedule | ||
|
|
||
| # SageMath parsed files | ||
| *.sage.py | ||
|
|
||
| # Environments | ||
| .env | ||
| .venv | ||
| env/ | ||
| # Python3 Venv Files | ||
| .venv/ | ||
| bin/ | ||
| include/ | ||
| lib/ | ||
| lib64 | ||
| pyvenv.cfg | ||
| share/ | ||
| venv/ | ||
| ENV/ | ||
| env.bak/ | ||
| venv.bak/ | ||
|
|
||
| # Spyder project settings | ||
| .spyderproject | ||
| .spyproject | ||
| .python-version | ||
|
|
||
| # Rope project settings | ||
| .ropeproject | ||
| # Cython | ||
| *.c | ||
|
|
||
| # mkdocs documentation | ||
| /site | ||
| # Emacs backup | ||
| *~ | ||
|
|
||
| # mypy | ||
| .mypy_cache/ | ||
| # VSCode | ||
| /.vscode | ||
|
|
||
| # Mac | ||
| .DS_Store | ||
| # Automatically generated files | ||
| docs/preconvert | ||
| site/ | ||
| out | ||
|
|
||
| # Visual Code | ||
| *.code-workspace | ||
| # Sphinx | ||
| _static | ||
| _build |
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| version: 2 | ||
|
|
||
| build: | ||
| os: "ubuntu-22.04" | ||
| tools: | ||
| python: "mambaforge-22.9" | ||
|
|
||
| conda: | ||
| environment: conda/environment.yml | ||
|
|
||
| sphinx: | ||
| # Path to your Sphinx configuration file. | ||
| configuration: doc/conf.py |
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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Credits | ||
|
|
||
| ## Lead Developer | ||
|
|
||
| - Marc Labadie, <[email protected]> | ||
|
|
||
| ## Contributors | ||
|
|
||
| - Christian Fournier, <[email protected]> | ||
| - Christophe Pradal, <[email protected]> | ||
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 |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # Changelog | ||
|
|
||
| All notable changes to this project will be documented in this file. | ||
|
|
||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
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 |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Contributing to agroservices | ||
|
|
||
| Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. | ||
|
|
||
| Please contribute by [reporting issues](https://github.com/openalea/agroservices/issues), [submitting pull requests](https://github.com/openalea/agroservices/pulls), or [providing feedback](https://github.com/openalea/agroservices/issues). |
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
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.
Uh oh!
There was an error while loading. Please reload this page.