Skip to content

Commit fdd701b

Browse files
committed
Update README.md and fix CI/CD
1 parent 4ead36f commit fdd701b

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

.github/workflows/validate.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@ jobs:
2525
- uses: actions/setup-python@v4
2626
with:
2727
python-version: ${{ matrix.python-version }}
28-
- name: Run image
29-
uses: abatilo/actions-poetry@v2
30-
with:
31-
poetry-version: ${{ matrix.poetry-version }}
28+
# - name: Run image
29+
# uses: abatilo/actions-poetry@v2
30+
# with:
31+
# poetry-version: ${{ matrix.poetry-version }}
32+
- name: Install Poetry
33+
shell: bash
34+
run: |
35+
pip install poetry==${{ matrix.poetry-version }}
3236
- name: Install Dependencies
3337
run: python -m poetry install
3438
- name: Configure Validation

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
![CI/CD](https://github.com/oracle/coherence-py-client/actions/workflows/validate.yml/badge.svg)
21
# Coherence Python Client
32

3+
![CI/CD](https://github.com/oracle/coherence-py-client/actions/workflows/validate.yml/badge.svg)
4+
[![License](http://img.shields.io/badge/license-UPL%201.0-blue.svg)](https://oss.oracle.com/licenses/upl/)
5+
6+
<img src=https://oracle.github.io/coherence/assets/images/logo-red.png width="30%"><img>
7+
48
The Coherence Python Client allows Python applications to act as cache clients to an Oracle Coherence cluster using
59
the Google gRPC framework as the network transport.
610

@@ -32,6 +36,7 @@ pip install coherence
3236

3337
## Documentation
3438

39+
TBC
3540

3641
## Examples
3742

@@ -73,6 +78,15 @@ await cache.remove(k1)
7378
```
7479
## Help
7580

81+
We have a **public Slack channel** where you can get in touch with us to ask questions about using the Coherence CLI
82+
or give us feedback or suggestions about what features and improvements you would like to see. We would love
83+
to hear from you. To join our channel,
84+
please [visit this site to get an invitation](https://join.slack.com/t/oraclecoherence/shared_invite/enQtNzcxNTQwMTAzNjE4LTJkZWI5ZDkzNGEzOTllZDgwZDU3NGM2YjY5YWYwMzM3ODdkNTU2NmNmNDFhOWIxMDZlNjg2MzE3NmMxZWMxMWE).
85+
The invitation email will include details of how to access our Slack
86+
workspace. After you are logged in, please come to `#coherence` and say, "hello!"
87+
88+
If you would like to raise an issue please see [here](https://github.com/oracle/coherence-py-client/issues/new/choose).
89+
7690
## Contributing
7791

7892
This project welcomes contributions from the community. Before submitting a pull request, please [review our contribution guide](./CONTRIBUTING.md)

0 commit comments

Comments
 (0)