Skip to content

Commit 0f8a1a2

Browse files
Simplify install (#25)
1 parent caaa5b5 commit 0f8a1a2

4 files changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ jobs:
2020
- uses: actions/cache@v2
2121
with:
2222
path: ~/.cache/pip
23-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/pyproject.toml') }}
23+
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
2424
restore-keys: |
2525
${{ runner.os }}-pip-
2626
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install -r requirements.txt
3130
pip install flit
3231
flit install
3332

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ To install the development version, fork the source of the project and make an
7373
editable install:
7474
7575
```
76-
pip install -r requirements.txt # temporary workaround for ics-py
7776
pip install -e ".[test]"
7877
```
7978

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = ["License :: OSI Approved :: BSD License"]
1313
dynamic = ["description"]
1414

1515
dependencies = [
16-
# "ics >=0.8",
16+
"ics @ git+https://github.com/ics-py/ics-py.git@133a0955f6efbb83ff0eae45ad0bbe6902a8f2f1#egg=ics",
1717
"python-dateutil",
1818
"pyyaml",
1919
]

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)