Skip to content

Commit

Permalink
changes to readme and only py3.11 in mac
Browse files Browse the repository at this point in the history
  • Loading branch information
jkiesele committed Nov 8, 2024
1 parent df61b7d commit 23e739c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- os: ubuntu-latest
python-version: "3.11"
cpython-tag: "cp311"
- os: macos-14 # Add macOS
python-version: "3.9"
cpython-tag: "cp39"
- os: macos-14
python-version: "3.10"
cpython-tag: "cp310"
#- os: macos-latest # Add macOS, below py3.11 not working
# python-version: "3.9"
# cpython-tag: "cp39"
#- os: macos-latest
# python-version: "3.10"
# cpython-tag: "cp310"
- os: macos-latest
python-version: "3.11"
cpython-tag: "cp311"
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,18 @@

## Installation

To install the latest version of `djcdata` from GitHub, run:
The package can be installed via pip for linux distributions from python 3.9 - 3.11:
```
pip install djcdata
```

For other distributions, you can install the latest version of `djcdata` from GitHub; run:

```bash
pip install git+https://github.com/jkiesele/djcdata
```

**Note**: The installation requires `cmake` version 3 or higher. On some systems (e.g., `lxplus7`), you might need to add `cmake` to your `PATH`:
**Note**: The github installation requires `cmake` version 3 or higher. On some systems (e.g., `lxplus7`), you might need to add `cmake` to your `PATH`:

```bash
export PATH=/cvmfs/sft.cern.ch/lcg/contrib/CMake/latest/Linux-x86_64/bin:$PATH
Expand Down

0 comments on commit 23e739c

Please sign in to comment.