Skip to content

Commit

Permalink
fix requirements, use forked version of bytetrack (#5)
Browse files Browse the repository at this point in the history
* fix requirements, use forked version of bytetrack

* fix ci

* fix makefile
  • Loading branch information
tristanpepinartefact authored Nov 7, 2023
1 parent 6fbc3aa commit 1b9d3f1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 89 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ jobs:

- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements-developer.txt
make install_project_requirements
- name: Deploying MkDocs documentation
run: |
mkdocs build
Expand Down
9 changes: 2 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
PIP_TOOLS_VERSION = 6.13.0
SETUPTOOLS_VERSION = 67.7.2
NUMPY_VERSION = $(shell cat requirements.in | sed 's/ /\n/g' | grep "numpy==" | sed 's/numpy==//g')

USE_CONDA ?= 1
INSTALL_SCRIPT = install_with_conda.sh
ifeq (false,$(USE_CONDA))
Expand All @@ -20,9 +16,8 @@ install:

# help: install_project_requirements - Install prohect requirements
.PHONY: install_project_requirements
install_project_requirements: install_pip_tools
@pip install numpy==${NUMPY_VERSION}
@pip install -r requirements.txt
install_project_requirements:
@pip install -r requirements-dev.txt

# help: install_precommit - Install pre-commit hooks
.PHONY: install_precommit
Expand Down
79 changes: 0 additions & 79 deletions notebooks/template.ipynb

This file was deleted.

4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
pandas==1.5.3
numpy==1.24.2
bytetracker==0.3.2
llist==0.7.1
pydantic==2.4.2

# custom bytetrack
git+https://github.com/TomDarmon/bytetrack-pip.git@main#egg=bytetracker

0 comments on commit 1b9d3f1

Please sign in to comment.