Skip to content

Commit

Permalink
Merge pull request #1005 from brettcannon/fix-PyPI-capitalization
Browse files Browse the repository at this point in the history
Fix the capitalization of "PyPI"
  • Loading branch information
jeffwilcox authored Nov 6, 2023
2 parents 724a3ce + 7ffab63 commit b517b48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const types = [
{ value: 'maven', label: 'Maven', provider: 'mavencentral' },
{ value: 'npm', label: 'Npm', provider: 'npmjs' },
{ value: 'nuget', label: 'NuGet', provider: 'nuget' },
{ value: 'pypi', label: 'PyPi', provider: 'pypi' },
{ value: 'pypi', label: 'PyPI', provider: 'pypi' },
{ value: 'gem', label: 'Gem', provider: 'rubygems' },
{ value: 'sourcearchive', label: 'SourceArchive' },
{ value: 'deb', label: 'Deb', provider: 'debian' },
Expand All @@ -125,7 +125,7 @@ const providers = [
{ value: 'github', label: 'GitHub', image: gitImage, type: 'git' },
{ value: 'mavencentral', label: 'MavenCentral', image: mavenImage, type: 'maven' },
{ value: 'nuget', label: 'NuGet', image: nugetImage, type: 'nuget' },
{ value: 'pypi', label: 'PyPi', image: pypiImage, type: 'pypi' },
{ value: 'pypi', label: 'PyPI', image: pypiImage, type: 'pypi' },
{ value: 'rubygems', label: 'RubyGems', image: gemImage, type: 'gem' },
{ value: 'cocoapods', label: 'CocoaPods', image: podImage, type: 'pod' },
{ value: 'cratesio', label: 'Crates.io', image: crateImage, type: 'crate' },
Expand Down

0 comments on commit b517b48

Please sign in to comment.