Skip to content

Commit

Permalink
Remove duplicate list of requirements (#74)
Browse files Browse the repository at this point in the history
And bump the PyPI package version
  • Loading branch information
kralka authored Dec 2, 2024
1 parent 00bcc55 commit 0c69185
Show file tree
Hide file tree
Showing 7 changed files with 175 additions and 193 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ activated the virtual environment.

Install requirements: `pip install --require-hashes -r base-tooling-requirements.txt`

Update: `pip-compile requirements.in --generate-hashes --upgrade` and commit requirements.txt.
Update: `pip-compile pyproject.toml --generate-hashes --upgrade` and commit requirements.txt.

#### Package install

Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ dependencies = [
"tensorflow",
"termcolor",
"tqdm",
"xxhash",
"zstandard",
]

[project.optional-dependencies]
Expand Down
17 changes: 0 additions & 17 deletions requirements.in

This file was deleted.

339 changes: 167 additions & 172 deletions requirements.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sedpack_rs"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Rust bindings for sedpack a general ML dataset package"
authors = [
Expand Down
4 changes: 3 additions & 1 deletion src/sedpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@
Format: MAJOR.MINOR.PATCH (see https://pypi.org/project/semver/ for more
possibilities)
"""
__version__ = "0.0.6"
# The version of this package is defined by rust/Cargo.toml but mypy does not
# see that.
__version__ = "0.0.7"

0 comments on commit 0c69185

Please sign in to comment.