Skip to content

Commit 9ed3ba0

Browse files
author
Evgeni Gordeev
committed
prepare for aoc 2024
1 parent 20f689b commit 9ed3ba0

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ build-ci:
1010
bin/build-ci-image.sh
1111

1212
pip-req:
13-
echo "# Built from Pipfile with 'pipenv requirements'" > requirements.txt
14-
pipenv requirements >> requirements.txt
13+
echo "# Built from Pipfile with 'pipenv requirements --dev'" > requirements.txt
14+
pipenv requirements --dev >> requirements.txt

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ numpy = "2.1.3"
88
scipy = "1.14.1"
99

1010
[dev-packages]
11+
# used in CI for bin/create-awesome-badges.py
1112
requests = "2.32.3"
1213

1314
[requires]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## ci
1111

12-
[GitHub Actions](https://github.com/EvgeniGordeev/adventofcode) based
12+
[GitHub Actions](https://github.com/EvgeniGordeev/adventofcode/actions) based
1313
on [Docker image](https://hub.docker.com/r/egordeev/adventofcode) built with `make build-ci`.
1414

1515
## repo

requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Built from Pipfile with 'pipenv requirements'
22
-i https://pypi.org/simple
3+
certifi==2024.8.30; python_version >= '3.6'
4+
charset-normalizer==3.4.0; python_full_version >= '3.7.0'
5+
idna==3.10; python_version >= '3.6'
6+
requests==2.32.3; python_version >= '3.8'
7+
urllib3==2.2.3; python_version >= '3.8'
38
numpy==2.1.3; python_version >= '3.10'
49
scipy==1.14.1; python_version >= '3.10'

0 commit comments

Comments
 (0)