Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
Merge pull request #400 from fetchai/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
DavidMinarsch authored May 9, 2020
2 parents 7c34af9 + 898a068 commit 2e1e77a
Show file tree
Hide file tree
Showing 380 changed files with 18,699 additions and 3,402 deletions.
100 changes: 100 additions & 0 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
name: TAC sanity checks and tests

on:
push:
branches:
- develop
- master
pull_request:

jobs:
common_checks:
runs-on: ubuntu-latest

timeout-minutes: 30

steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: 3.7
- name: Install dependencies (ubuntu-latest)
run: |
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install pipenv
pip install tox
- name: Code style check
run: |
tox -e black-check
tox -e flake8
- name: Static type check
run: tox -e mypy

integration_checks:
runs-on: ubuntu-latest

timeout-minutes: 30

steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: 3.7
- name: Install dependencies (ubuntu-latest)
run: |
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install pipenv
pip install tox
sudo apt-get install -y protobuf-compiler
- name: Unit tests
run: |
tox -e py3.7 -- -m 'integration'
platform_checks:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]

timeout-minutes: 30

steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- if: matrix.os == 'ubuntu-latest'
name: Install dependencies (ubuntu-latest)
run: |
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install pipenv
pip install tox
sudo apt-get install -y protobuf-compiler
# use sudo rm /var/lib/apt/lists/lock above in line above update if dependency install failures persist
# use sudo apt-get dist-upgrade above in line below update if dependency install failures persist
- if: matrix.os == 'macos-latest'
name: Install dependencies (macos-latest)
run: |
pip install pipenv
pip install tox
brew install protobuf
- if: matrix.os == 'windows-latest'
name: Install dependencies (windows-latest)
run: |
pip install pipenv
pip install tox
echo "::add-path::C:\Program Files (x86)\Windows Kits\10\bin\10.0.18362.0\x64"
choco install protoc
# python scripts/update_symlinks_cross_platform.py
- name: Unit tests
run: |
tox -e py${{ matrix.python-version }} -- -m 'not integration'
8 changes: 2 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,16 +114,12 @@ tac/gui/static/tmp/*
!tac/gui/static/tmp/.gitkeep

*.sqlite3
data/*
!data/oef-logs
!data/oef-logs/.gitkeep
data/oef-logs/*
!data/.gitkeep
!data/shared
data/shared/*
!data/shared/.gitkeep
data/shared/*
scripts/data/*


notebooks/.ipynb_checkpoints

.DS_Store
Expand Down
8 changes: 8 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Authors

This is the official list of Fetch.AI authors for copyright purposes.

* Marco Favorito <[email protected]> [MarcoFavorito](https://github.com/MarcoFavorito)
* David Minarsch <[email protected]> [DavidMinarsch](https://github.com/DavidMinarsch)
* Diarmid Campbell <[email protected]> [dishmop](https://github.com/dishmop)
* Aristotelis Triantafyllidis <[email protected]> [Totoual](https://github.com/Totoual)
7 changes: 0 additions & 7 deletions AUTHORS.rst

This file was deleted.

76 changes: 76 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at [email protected]. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq
13 changes: 4 additions & 9 deletions CONTRIBUTING.rst → CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
.. _contributing:

Contributing
============
# Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.

If you need support, want to report/fix a bug, ask for/implement features, you can check the
`Issues page <https://github.com/fetchai/agents-tac/issues>`_,
or `submit a Pull request <https://github.com/fetchai/agents-tac/pulls>`_.
[Issues page](https://github.com/fetchai/agents-tac/issues)
or [submit a Pull request](https://github.com/fetchai/agents-tac/pulls)

For other kinds of feedback, you can contact one of the
`authors`_ by email.

.. _authors: AUTHORS.rst
[authors](https://github.com/fetchai/agents-tac/blob/master/AUTHORS.md) by email.
68 changes: 33 additions & 35 deletions HISTORY.rst → HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,54 +1,52 @@
Release History
===============
# Release History

0.1.0 (2018-07-02)
-------------------
## 0.1.8 (2020-05-09)

- Initial release of the package.
- Fixes simulation
- Adds simulation data from experiments
- Improves static code analysis (adds black code formatter)
- Adds miscelaneous repo info

0.1.1 (2019-07-04)
-------------------
## 0.1.7 (2019-10-02)

- Minor updates, many bug fixes, breaking changes.
- Improves launcher gui
- Multiple small fixes

0.1.2 (2019-07-08)
-------------------
## 0.1.6 (2019-09-23)

- Minor updates, many bug fixes, no breaking changes.
- Updates docs to latest code base
- Bumps to latest aea version 0.1.4
- Adds versioning to TAC via `version_id`
- Ports `tac` protocol from aea repo
- Multiple small fixes

0.1.3 (2019-08-09)
-------------------
## 0.1.5 (2019-09-16)

- Updated to OEF SDK version 0.6
- Improved documentation by adding detailed guides
- Added more tools/features to support the developer (e.g. the launcher app)
- Bump to latest oef image 0.7
- Bump to latest aea version 0.1.2
- Static type checking with Mypy
- Test/bug fixes

0.1.4 (2019-09-05)
-------------------
## 0.1.4 (2019-09-05)

- Updated to OEF SDK version 0.6.7
- Transition to AEA architecture and extraction of AEA framework.
- Updated to AEA version 0.1.1

0.1.5 (2019-09-16)
-------------------
## 0.1.3 (2019-08-09)

- Bump to latest oef image 0.7
- Bump to latest aea version 0.1.2
- Static type checking with Mypy
- Test/bug fixes
- Updated to OEF SDK version 0.6
- Improved documentation by adding detailed guides
- Added more tools/features to support the developer (e.g. the launcher app)

0.1.6 (2019-09-23)
-------------------
## 0.1.2 (2019-07-08)

- Updates docs to latest code base
- Bumps to latest aea version 0.1.4
- Adds versioning to TAC via `version_id`
- Ports `tac` protocol from aea repo
- Multiple small fixes
- Minor updates, many bug fixes, no breaking changes.

0.1.7 (2019-10-02)
-------------------
## 0.1.1 (2019-07-04)

- Improves launcher gui
- Multiple small fixes
- Minor updates, many bug fixes, breaking changes.

## 0.1.0 (2018-07-02)

- Initial release of the package.
47 changes: 0 additions & 47 deletions Jenkinsfile

This file was deleted.

4 changes: 1 addition & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
include README.md LICENSE Pipfile Pipfile.lock
include README.md LICENSE HISTORY.md AUTHORS.md CODE_OF_CONDUCT.md Pipfile Pipfile.lock tox.ini pytest.ini mypy.ini

recursive-include tac *
recursive-include proto *
recursive-include tests *
recursive-include docs *
recursive-include templates *
recursive-include sandbox *
recursive-include simulation *
recursive-include scripts *
recursive-include oef_search_pluto_scripts *
Loading

0 comments on commit 2e1e77a

Please sign in to comment.