Skip to content

Commit f80ca8f

Browse files
committed
Configure dependabot to check dev dependencies monthly
1 parent e35316e commit f80ca8f

File tree

7 files changed

+9
-5
lines changed

7 files changed

+9
-5
lines changed

.github/dependabot.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "pip" # See documentation for possible values
9-
directory: "/requirements" # Location of package manifests
8+
- package-ecosystem: "pip"
9+
directory: "/requirements/base"
1010
schedule:
1111
interval: "daily"
12+
- package-ecosystem: "pip"
13+
directory: "/requirements/dev"
14+
schedule:
15+
interval: "monthly"

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Setting up the Python development environment:
5959
* [Install pip](https://pip.pypa.io/en/stable/installation/)
6060
* Install the project's Python dependencies:
6161
```bash
62-
pip install -r requirements/base.txt -r requirements/dev.txt
62+
pip install -r requirements/base/base.txt -r requirements/dev/dev.txt
6363
```
6464
* (Optional) To run integration tests locally, set up a [Neo4j DBMS](https://neo4j.com/docs/getting-started/current/) with [GDS](https://neo4j.com/docs/graph-data-science/current/) installed
6565

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include requirements/base.txt
1+
include requirements/base/base.txt
22
include LICENSE
33
prune graphdatascience/tests
44
prune graphdatascience/resources/cora/serialize_cora.py
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r", encoding="utf-8") as f:
44
long_description = f.read()
55

6-
with open("requirements/base.txt", "r", encoding="utf-8") as f:
6+
with open("requirements/base/base.txt", "r", encoding="utf-8") as f:
77
reqs = f.read().splitlines()
88

99
with open("graphdatascience/version.py") as f:

0 commit comments

Comments
 (0)