Skip to content

Commit d928b39

Browse files
authored
Merge pull request #18 from marcosschroh/fix/requirements
fix: requirements updated
2 parents 01003bb + 73f7f37 commit d928b39

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,41 @@
11
# Changelog
2+
23
All notable changes to rae-helm will be documented in this file.
34

5+
## 2020-09-24
6+
7+
- requirements upated to latest version
8+
9+
- Test docker image added
10+
- Travis integration added
11+
412
## 2019-07-03
13+
514
- Test docker image added
615
- Travis integration added
716

817
## 2019-05-19
18+
919
- Schema Registry dependency added (python-schema-registry-client[faust]==0.3.0)
1020

1121
## 2019-04-18
22+
1223
- Logging now is set from `settings` and not from ENV variable
1324

1425
## 2019-04-17
26+
1527
- Settings implemented with simple-settings package.
1628
- Faust version updated to 1.5.4
1729

1830
## 2019-04-04
31+
1932
- Integration with Schema registry finished
2033
- Custom Codec and Serializer added
2134
- Schema Registry client added
2235
- New faust application called Users added.
2336

2437
## 2019-03-17
38+
2539
- First release
2640
- `docker-compose` finished with `zookeeper`, `kafka` and `schema-registry`
2741
- `Page views` and `Leader Election` packages added.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
The MIT License (MIT)
3-
Copyright (c) 2019, Marcos Schroh
3+
Copyright (c) 2020, Marcos Schroh
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
An example to show how to include a `faust` project as a service using `docker compose`, with [Kafka](https://kafka.apache.org/), [Zookeeper](https://zookeeper.apache.org/) and [Schema Registry](https://docs.confluent.io/current/schema-registry/docs/index.html)
77

8+
Notice that everything runs using `docker-compose`, including the faust example application. For
9+
local development is preferable to run the `kafka` cluster separate from the `faust app`.
10+
811
If you want to generate a `faust` project from scratch, please use the [cookiecutter-faust](https://github.com/marcosschroh/cookiecutter-faust)
912

1013
Read more about Faust here: https://github.com/robinhood/faust

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.1
1+
1.2.2

faust-project/setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22

33
requires = [
44
"colorlog>=3.1.4",
5-
"fastavro<=0.22.3",
65
"simple-settings",
7-
"faust>=1.10.4",
6+
"faust",
87
"python-schema-registry-client",
9-
"typing-extensions==3.7.4.1",
8+
"typing-extensions",
109
]
1110

1211
setup(
1312
name='faust-example',
14-
version='1.2.1',
13+
version='1.2.2',
1514
description='Faust example with Docker Compose',
1615
long_description='''
1716
Example running Faust with Docker Compose (zookeeper, kafka and schema-registry)

0 commit comments

Comments
 (0)