Skip to content

Commit

Permalink
Fix minor issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mariolpantunes committed Aug 14, 2024
1 parent e4fe47d commit df07900
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/plot_journal_kmeans.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def main():
plt.scatter(X_cluster_i[:,2], X_cluster_i[:,3], c=colormap[i], s=40, marker=markers[i])

ax = plt.gca()
ax.set_xlabel('Petal length')
ax.set_ylabel('Petal width')
ax.set_xlabel('Petal length (cm)')
ax.set_ylabel('Petal width (cm)')
ax.set_xlim([0, 7.1])
ax.set_ylim([0, 2.6])
plt.savefig('out/kmeans_clusters.png', bbox_inches='tight', transparent=True)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
tqdm>=4.66.5
pdoc>=14.6.0
numpy>=2.0.1
numpy~=1.26
imageio>=2.35.0
jax[cpu]>=0.4.31
pyBlindOpt>=0.1.3
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package_dir =
packages = find:
python_requires = >=3.8
install_requires =
numpy >= 2.0.1
numpy~=1.26
pyUTSAlgorithms>=0.1.3

[options.packages.find]
Expand Down

0 comments on commit df07900

Please sign in to comment.