Skip to content

Commit

Permalink
remove nested gitignore + hardcode version in configs
Browse files Browse the repository at this point in the history
  • Loading branch information
ohjuny committed Nov 8, 2024
1 parent 376f17f commit e22c3b0
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 86 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.envrc
.env
.test
temp*
results
figures
workloads*
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "_lowtime_rs"
version = "0.2.0" # keep synced with __init__.py, pyproject.toml
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
1 change: 0 additions & 1 deletion lowtime/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion lowtime/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

"""A library for solving the time-cost tradeoff problem."""

__version__ = "0.2.0"
__version__ = "0.2.0" # keep synced with pyproject.toml, Cargo.toml
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ build-backend = "maturin"
[project]
name = "lowtime"
description = "A library for solving the time-cost tradeoff problem."
version="0.2.0" # keep synced with __init__.py, Cargo.toml
readme = "README.md"
authors = [
{name = "Jae-Won Chung", email = "[email protected]"},
Expand All @@ -30,7 +31,6 @@ dependencies = [
"numpy",
"networkx",
]
dynamic = ["version"]

[tool.maturin]
module-name = "lowtime._lowtime_rs"
Expand Down
83 changes: 0 additions & 83 deletions pyproject.toml.bak

This file was deleted.

0 comments on commit e22c3b0

Please sign in to comment.