Skip to content

Commit

Permalink
Remove pinned reqs, specify minimal versions for top level reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaack committed Aug 1, 2022
1 parent 26d64b4 commit 44c9171
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 46 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ git clone https://github.com/sbaack/github-scraper.git
cd github-scraper
python -m venv github-scraper_venv && source github-scraper_venv/bin/activate
# Install necessary dependencies
python -m pip install -r requirements.txt
python -m pip install -Ur requirements.in
```

Next, you need to add information to two configuration files. First, add your GitHub user name and your [personal access token](https://github.com/settings/tokens) to access the GitHub API in the `config.json` file. Second, add the Github account names of the organizations you want to scrape to the `organizations.csv` spreadsheet in the column *github_org_name*. For example, if you want to scrape [mySociety](https://github.com/mysociety), [Open Knowledge](https://github.com/okfn), and [Ushahidi](https://github.com/ushahidi), your file will look like this:

| github_org_name |
|:----------------|
| :-------------- |
| mysociety |
| okfn |
| ushahidi |
Expand Down
4 changes: 2 additions & 2 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aiohttp[speedups]
networkx
aiohttp[speedups] >= 3.8.1
networkx >= 2.8
42 changes: 0 additions & 42 deletions requirements.txt

This file was deleted.

0 comments on commit 44c9171

Please sign in to comment.