Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move papers #8

Merged
merged 3 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 21 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
cmake.bld
/papers/generated/
/papers/**/generated/
compile_commands.json
.update-submodules
.use-docker
/papers/.venv/
/papers/_minted-view-maybe/
/papers/*.aux
/papers/*.bbl
/papers/*.blg
/papers/*.dvi
/papers/*.fdb_latexmk
/papers/*.fls
/papers/*.log
/papers/*.out
/papers/*.pdf
/papers/*.toc
/papers/*.idx
/papers/*.xtr
/papers/.deps/
/papers/_minted-view-maybe.work/
/papers/.venv.work/
/papers/_minted-optional_ref/
/papers/_minted-optional_ref_wording/
/papers/**/.venv/
/papers/**/_minted-*/
/papers/**/*.aux
/papers/**/*.bbl
/papers/**/*.blg
/papers/**/*.dvi
/papers/**/*.fdb_latexmk
/papers/**/*.fls
/papers/**/*.log
/papers/**/*.out
/papers/**/*.pdf
/papers/**/*.toc
/papers/**/*.idx
/papers/**/*.xtr
/papers/**/.deps/
/papers/**/_minted-view-maybe.work/
/papers/**/.venv.work/
/papers/**/_minted-optional_ref/
/papers/**/_minted-optional_ref_wording/
/.cache/
*.pyg
/.build/
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[submodule "papers/wg21"]
path = papers/wg21
path = papers/P2988/wg21
url = https://github.com/mpark/wg21.git
[submodule "extern/googletest"]
path = extern/googletest
Expand Down
1 change: 1 addition & 0 deletions papers/P2988/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/papers/P2988/.deps/
4 changes: 2 additions & 2 deletions papers/Makefile → papers/P2988/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PYEXECPATH ?= $(shell which python3.12 || which python3.11 || which python3.10)
PYTHON ?= $(shell basename $(PYEXECPATH))
VENV := .venv/
SOURCE_VENV := . $(VENV)/bin/activate;
PYEXEC := $(SOURCE_VENV) $(PYTHON)
PIP_SYNC := $(PYEXEC) -m piptools sync
PYEXECPATH ?= $(shell which python3.12 || which python3.11 || which python3.10)
PYTHON ?= $(shell basename $(PYEXECPATH))
REQS_MARKER := $(VENV)/bin/.pip-sync
PIP := $(PYEXEC) -m pip
DEPS_DIR := .deps
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading