Skip to content

Commit

Permalink
Stop signing releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 21, 2022
1 parent 8551da6 commit 334ef84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ release: clean
force_release:: clean
git push --tags
python3 setup.py sdist bdist_wheel
twine upload -s -i 27C50E7F590947D7273A741E85194C08421980C9 dist/*
twine upload dist/*
2 changes: 1 addition & 1 deletion smmap/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def extend_left_to(self, window, max_size):
rofs = self.ofs - window.ofs_end()
nsize = rofs + self.size
rofs -= nsize - min(nsize, max_size)
self.ofs = self.ofs - rofs
self.ofs -= rofs
self.size += rofs

def extend_right_to(self, window, max_size):
Expand Down

0 comments on commit 334ef84

Please sign in to comment.