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

add Cargo.lock #1156

Merged
merged 1 commit into from
Aug 1, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Build module
run: |
python3 -m pip install -e . --install-option="--disable_lto"
python -m pip install -e .

- name: Build the docs
working-directory: doc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manylinux/buildwheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ source "$HOME/.cargo/env"
# so we need to be careful in general.
rustup override set 1.62.1
# Pin cbindgen
cargo install cbindgen@0.24.3
cargo install --locked cbindgen@0.24.3

# GSL_VERSION=2.5
# curl -o gsl-${GSL_VERSION}.tar.gz "ftp://ftp.gnu.org/gnu/gsl/gsl-${GSL_VERSION}.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion deployment/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y install cmak
# so we need to be careful in general.
&& rustup override set 1.62.1 \
# Pin cbindgen
&& cargo install cbindgen@0.24.3 \
&& cargo install --locked cbindgen@0.24.3 \
&& rustc --version \
&& cbindgen --version \
&& ls -lhrt
Expand Down
7 changes: 7 additions & 0 deletions doc/misc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Major changes are listed below. Each release likely contains fiddling with back-end code,
updates to latest `fwdpp` version, etc.

## 0.20.1

Build system and CI.

* Update pip usage and ensure reproducible builds of rust code.
PR {pr}`1156`

## 0.20.0

Documentation
Expand Down
249 changes: 249 additions & 0 deletions rust/fp11rust/Cargo.lock

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

Loading